16 lines
376 B
Python
16 lines
376 B
Python
import logging
|
|
|
|
from app import app
|
|
|
|
import endpoints.index
|
|
import endpoints.api
|
|
import endpoints.web
|
|
import endpoints.tags
|
|
import endpoints.registry
|
|
|
|
if __name__ == '__main__':
|
|
FORMAT = '%(asctime)-15s - %(levelname)s - %(pathname)s - ' + \
|
|
'%(funcName)s - %(message)s'
|
|
logging.basicConfig(format=FORMAT, level=logging.DEBUG)
|
|
|
|
app.run(port=5001, debug=True)
|