- 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>
40 lines
320 B
Plaintext
40 lines
320 B
Plaintext
# Environnement
|
|
.env
|
|
*.env
|
|
|
|
# Base de données
|
|
instance/
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.Python
|
|
venv/
|
|
env/
|
|
.venv/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Fichiers sensibles
|
|
seed_sources.py
|
|
|
|
# Sous-dossier non lié au projet
|
|
Chimical/
|