mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 16:11:21 +00:00
3a41423596
This reverts commit 9f8cc3764f
.
23 lines
495 B
Plaintext
23 lines
495 B
Plaintext
[supervisord]
|
|
user=user
|
|
logfile = /tmp/supervisord.log
|
|
loglevel = DEBUG
|
|
pidfile = /tmp/supervisord.pid
|
|
|
|
[unix_http_server]
|
|
file=/tmp/supervisor.sock
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///tmp/supervisor.sock
|
|
|
|
[program:app]
|
|
directory=%(ENV_TFW_APP_DIR)s
|
|
command=env python app.py
|
|
|
|
[program:event_handler_main]
|
|
directory=%(ENV_TFW_EVENT_HANDLERS_DIR)s
|
|
command=env python event_handler_main.py
|