Initial commit: Portal Auth Admin Dashboard

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-18 08:18:50 +02:00
commit 7caa62a428
20 changed files with 1347 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
[Unit]
Description=Portal Auth Admin Dashboard
After=network.target postgresql.service
[Service]
Type=simple
User=root
Group=root
WorkingDirectory=/opt/portal-auth-dashboard
Environment="PATH=/opt/portal-auth-dashboard/venv/bin"
ExecStart=/opt/portal-auth-dashboard/venv/bin/gunicorn -w 1 -b 0.0.0.0:5000 --access-logfile - --error-logfile - app:app
ExecReload=/bin/kill -s HUP $MAINPID
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target