Files
eamco_office_api/app.py
2026-01-28 21:55:10 -05:00

14 lines
230 B
Python
Executable File

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