File size: 448 Bytes
73e87e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[supervisord]
nodaemon=true

[program:answer_service]
command=/usr/local/bin/python -m answer_generation
autostart=true
autorestart=true

[program:question_service]
command=/usr/local/bin/python -m question_generation
autostart=true
autorestart=true

[program:ui]
command=/usr/local/bin/python app.py
autostart=true
autorestart=true
environment=UI_PORT=7861

[program:nginx]
command=/usr/sbin/nginx -g 'daemon off;'
autostart=true
autorestart=true