Files
tableau-de-bord/tableau-de-bord-pro.service
Antoine Van Elstraete bb0e57dbc6 docs: ajout service systemd et instructions de déploiement
- tableau-de-bord-pro.service : service Gunicorn pour www-data
- README : section production avec systemctl edit --full

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-11 20:55:38 +01:00

18 lines
426 B
Desktop File

[Unit]
Description=Tableau de bord pro (Gunicorn)
After=network.target
[Service]
User=www-data
Group=www-data
WorkingDirectory=/var/www/tableau-de-bord-pro
Environment=SECRET_KEY=changeme-replace-with-a-strong-secret
ExecStart=/var/www/tableau-de-bord-pro/.venv/bin/gunicorn \
-c /var/www/tableau-de-bord-pro/gunicorn.conf.py \
"app:create_app()"
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target