pythonise-exercice / app /__main__.py
wilenPxs
Deploiement app pythonisation (cache FAISS reconstruit au boot)
77a0a72
Raw
History Blame Contribute Delete
220 Bytes
"""`python -m app` → serveur de dev (reloader OFF : FAISS/HF lourds à charger)."""
from app import create_app
from app.config import HOST, PORT
create_app().run(host=HOST, port=PORT, debug=True, use_reloader=False)