devike / supervisord.conf
mfoud444's picture
Create supervisord.conf
36740db verified
raw
history blame contribute delete
346 Bytes
[supervisord]
nodaemon=true
[program:backend]
directory=/app
command=/app/.venv/bin/python devika.py
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
[program:frontend]
directory=/app/ui
command=bun run start --port 7860
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr