2024-08-26 13:04:21 +00:00
|
|
|
[Unit]
|
2024-08-26 13:37:58 +00:00
|
|
|
Description=Gunicorn instance to serve VoicePeak API
|
2024-08-26 13:04:21 +00:00
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
2024-08-26 13:37:58 +00:00
|
|
|
User=your_username
|
2024-08-26 13:04:21 +00:00
|
|
|
Group=your_group
|
|
|
|
WorkingDirectory=/path/to/your/project
|
|
|
|
Environment="PATH=/path/to/your/project/venv/bin"
|
2024-08-26 13:37:58 +00:00
|
|
|
ExecStart=/path/to/your/project/run_prod.sh
|
2024-08-26 13:04:21 +00:00
|
|
|
Restart=always
|
|
|
|
|
|
|
|
[Install]
|
2024-08-26 13:37:58 +00:00
|
|
|
WantedBy=multi-user.target
|