fokan commited on
Commit
1bec731
·
verified ·
1 Parent(s): 1f736cb

Create supervisord.conf

Browse files
Files changed (1) hide show
  1. supervisord.conf +22 -0
supervisord.conf ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ supervisord.conf[supervisord]
2
+ nodaemon=true
3
+
4
+
5
+ [program:sequential_thinking]
6
+ command=npx -y @modelcontextprotocol/server-sequential-thinking --port 8080
7
+ directory=/app
8
+ stdout_logfile=/dev/stdout
9
+ stderr_logfile=/dev/stderr
10
+ autostart=true
11
+ autorestart=true
12
+ startretries=3
13
+
14
+
15
+ [program:ui]
16
+ command=python3 app.py
17
+ directory=/app
18
+ stdout_logfile=/dev/stdout
19
+ stderr_logfile=/dev/stderr
20
+ autostart=true
21
+ autorestart=true
22
+ startretries=3