- Flask/SQLAlchemy app with profile, dashboard, recommendations - AI crawl pipeline (GPT-4o) with admin review workflow - 14 curated health sources (RSS + index crawling) - Production config: env vars, Gunicorn, systemd, nginx - deploy/ scripts for VPS setup and updates Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
208 B
Python
10 lines
208 B
Python
"""
|
|
Point d'entrée Gunicorn pour la production.
|
|
Usage : gunicorn -c gunicorn.conf.py wsgi:app
|
|
"""
|
|
from app import app, _init_db, start_scheduler
|
|
|
|
with app.app_context():
|
|
_init_db()
|
|
start_scheduler()
|