This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/application.py

19 lines
390 B
Python
Raw Normal View History

2017-02-01 23:17:25 +00:00
import os
import logging
import logging.config
2017-02-01 23:17:25 +00:00
from util.log import logfile_path
from app import app as application
# Bind all of the blueprints
import web
import verbs
import registry
import secscan
if __name__ == '__main__':
2017-02-01 23:17:25 +00:00
logging.config.fileConfig(logfile_path(debug=True), disable_existing_loggers=False)
2015-01-29 19:59:49 +00:00
application.run(port=5000, debug=True, threaded=True, host='0.0.0.0')