Skip to content

Instantly share code, notes, and snippets.

@imadphp
Forked from hezhao/myapp.conf
Created September 19, 2019 20:06
Show Gist options
  • Save imadphp/cb00e826b1b32175bb8772aad08e8fe0 to your computer and use it in GitHub Desktop.
Save imadphp/cb00e826b1b32175bb8772aad08e8fe0 to your computer and use it in GitHub Desktop.
Example supervisor config file /etc/supervisor/conf.d/myapp.conf
[program:myapp]
autostart = true
autorestart = true
command = python /home/pi/myapp.py
environment=SECRET_ID="secret_id",SECRET_KEY="secret_key_avoiding_%_chars"
stdout_logfile = /home/pi/stdout.log
stderr_logfile = /home/pi/stderr.log
startretries = 3
user = pi
$ sudo apt-get install supervisor
$ sudo touch /etc/supervisor/conf.d/myapp.conf
$ sudo supervisorctl start myapp
$ sudo supervisorctl tail myapp
$ sudo supervisorctl status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment