Files
BoursePython/run.py
T

7 lines
167 B
Python
Raw Normal View History

2026-08-03 10:02:12 +02:00
import os
from app import app
2026-08-03 10:02:12 +02:00
if __name__ == "__main__":
debug = os.environ.get("FLASK_ENV") == "development"
app.run(host="0.0.0.0", port=5000, debug=debug)