24 lines
424 B
Plaintext
24 lines
424 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
logfile=/dev/null
|
|
logfile_maxbytes=0
|
|
pidfile=/dev/null
|
|
|
|
[program:npm]
|
|
command=npm run watch
|
|
directory=/srv/app
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|
|
|
|
[program:dx]
|
|
command=dx serve --addr 0.0.0.0 --port 8000
|
|
directory=/srv/app
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes=0
|
|
redirect_stderr=true
|