seller_central_backend/seller-central-backend.service
vickytechkey 7788f90e5a
Some checks failed
Deploy Beta (NATIVE) / deploy (push) Failing after 23s
ci: switch to native deployment using systemd and a virtual environment
2026-08-09 18:43:29 +05:30

21 lines
615 B
Desktop File

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