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

14 lines
311 B
Python
Raw Normal View History

2013-09-25 21:50:03 +00:00
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)