Files
eamco_office_api/app.py
2024-02-28 16:10:40 -05:00

14 lines
204 B
Python
Executable File

# coding=utf-8
from app import app
PORT = 4056
HOST = '0.0.0.0'
if __name__ == '__main__':
app.run(
debug=True,
host=HOST,
port=PORT,
use_reloader=True
)