Files
set50-system/backend/run.py
2026-08-23 07:41:31 +07:00

18 lines
285 B
Python

"""Run the local Flask API."""
from __future__ import annotations
import os
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(
host=os.getenv("HOST", "127.0.0.1"),
port=int(os.getenv("PORT", "5000")),
debug=False,
)