forked from wandb/weave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
supervisord.conf
38 lines (33 loc) · 931 Bytes
/
supervisord.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[inet_http_server]
port = 127.0.0.1:9001 ; Web interface for supervisor
[supervisorctl]
serverurl = http://localhost:9001 ; use an http:// URL to specify an inet socket
[supervisord]
logfile = /tmp/supervisord.log
logfile_maxbytes = 50MB
logfile_backups=10
loglevel = info
pidfile = /tmp/supervisord.pid
nodaemon = true ; run in the foreground
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[program:vite]
command = yarn dev
directory = weave-js
autostart = true
autorestart = false
redirect_stderr = true
stdout_logfile=/dev/fd/1 # log to console
stdout_logfile_maxbytes=0
stopasgroup = true
killasgroup = true
[program:weave-python-server]
command = bash ./weave_server_test.sh
directory = .
autostart = true
autorestart = false
redirect_stderr = true
stdout_logfile=/dev/fd/1 # log to console
stdout_logfile_maxbytes=0
stopasgroup = true
killasgroup = true