14 lines
311 B
Python
14 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)
|