wkplhc commited on
Commit
41d277c
·
verified ·
1 Parent(s): 89dd27c

Create supervisord.conf

Browse files
Files changed (1) hide show
  1. supervisord.conf +13 -0
supervisord.conf ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [supervisord]
2
+ nodaemon=true
3
+
4
+ [program:backend]
5
+ directory=/app/backend
6
+ command=uv run python run.py
7
+ autostart=true
8
+ autorestart=true
9
+
10
+ [program:nginx]
11
+ command=nginx -g "daemon off;"
12
+ autostart=true
13
+ autorestart=true