crmbackend/crm-backend.service
vickytechkey 05e1a1a149
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 38s
initial commit
2026-08-15 19:22:16 +05:30

21 lines
552 B
Desktop File

[Unit]
Description=CRM Backend Service
After=network.target
[Service]
User=ubuntu
WorkingDirectory=/home/ubuntu/crmbackend
EnvironmentFile=/home/ubuntu/crmbackend/.env
ExecStart=/home/ubuntu/crmbackend/venv/bin/gunicorn digihoxbackend.wsgi:application \
--bind 0.0.0.0:8081 \
--workers 3 \
--access-logfile /home/ubuntu/crmbackend/logs/gunicorn-access.log \
--error-logfile /home/ubuntu/crmbackend/logs/gunicorn-error.log \
--log-level info \
--capture-output
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target