17 lines
328 B
Desktop File
17 lines
328 B
Desktop File
[Unit]
|
|
Description=Voley Attendance App
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=www-data
|
|
Group=www-data
|
|
WorkingDirectory=/opt/voley
|
|
EnvironmentFile=/opt/voley/.env
|
|
ExecStart=/opt/voley/.venv/bin/uvicorn main:app --host 127.0.0.1 --port 8000 --workers 2
|
|
Restart=always
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|