26 lines
587 B
Text
26 lines
587 B
Text
[supervisord]
|
|
nodaemon=true
|
|
logfile=/dev/null
|
|
logfile_maxbytes=0
|
|
|
|
[program:backend]
|
|
command=/app/kv-tube
|
|
directory=/app
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
environment=KVTUBE_DATA_DIR="/app/data",GIN_MODE="release"
|
|
|
|
[program:frontend]
|
|
command=node server.js
|
|
directory=/app/frontend
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
environment=NODE_ENV="production",PORT="3000",HOSTNAME="0.0.0.0"
|