17 lines
No EOL
540 B
Desktop File
17 lines
No EOL
540 B
Desktop File
[Unit]
|
|
Description = "Small parts inventory management system"
|
|
|
|
[Service]
|
|
Type = simple
|
|
ExecStart = gunicorn inventory_project.wsgi -b 127.0.0.1:8130 -w 4 -t 15 -p /run/inventory.pid --log-level warning -n inventory
|
|
ExecReload = kill -HUP $MAINPID
|
|
PIDFile = /run/inventory.pid
|
|
Restart = always
|
|
User = inventory
|
|
Group = inventory
|
|
WorkingDirectory = /home/inventory/inventory
|
|
Environment = "PATH=/home/inventory/.virtualenvs/default/bin"
|
|
Environment = "VIRTUAL_ENV=/home/inventory/.virtualenvs/default"
|
|
|
|
[Install]
|
|
WantedBy = multi-user.target |