31 lines
No EOL
632 B
Text
31 lines
No EOL
632 B
Text
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/dev/stdout
|
|
logfile_maxbytes=0
|
|
pidfile=/var/run/supervisord.pid
|
|
loglevel=info
|
|
|
|
[program:telegram-bot]
|
|
command=bun start
|
|
directory=/usr/src/app
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
stdout_logfile_backups=0
|
|
stderr_logfile_backups=0
|
|
|
|
[program:webui]
|
|
command=bun run start
|
|
directory=/usr/src/app/webui
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
stdout_logfile_backups=0
|
|
stderr_logfile_backups=0 |