9 lines
194 B
Python
9 lines
194 B
Python
|
|
from common.config.factory import create_app
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
print(app.url_map)
|
|
app.run(host="192.168.2.105", port=9550, debug=True, use_reloader=False)
|