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/registry_wsgi.py
2013-09-25 17:50:03 -04:00

13 lines
311 B
Python

import logging
from app import app
import endpoints.registry
import endpoints.tags
if __name__ == '__main__':
FORMAT = '%(asctime)-15s - %(levelname)s - %(pathname)s - ' + \
'%(funcName)s - %(message)s'
logging.basicConfig(format=FORMAT, level=logging.DEBUG)
app.run(port=5000, debug=True)