Spaces:
Runtime error
Runtime error
File size: 320 Bytes
77a0a72 | 1 2 3 4 5 6 7 8 9 10 11 | """Point d'entrée : `python run.py` → http://127.0.0.1:5000
(équivalent : `python -m app`). Reloader OFF — FAISS/HF lourds à charger."""
from app import create_app
from app.config import HOST, PORT
app = create_app()
if __name__ == "__main__":
app.run(host=HOST, port=PORT, debug=True, use_reloader=False)
|