Spaces:
Paused
Paused
File size: 421 Bytes
1bec731 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | supervisord.conf[supervisord]
nodaemon=true
[program:sequential_thinking]
command=npx -y @modelcontextprotocol/server-sequential-thinking --port 8080
directory=/app
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
autostart=true
autorestart=true
startretries=3
[program:ui]
command=python3 app.py
directory=/app
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
autostart=true
autorestart=true
startretries=3 |