Spaces:
Paused
Paused
Create supervisord.conf
Browse files- supervisord.conf +12 -0
supervisord.conf
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[supervisord]
|
2 |
+
nodaemon=true
|
3 |
+
|
4 |
+
[program:backend]
|
5 |
+
command=python backend.py
|
6 |
+
autostart=true
|
7 |
+
autorestart=true
|
8 |
+
|
9 |
+
[program:app]
|
10 |
+
command=python app.py
|
11 |
+
autostart=true
|
12 |
+
autorestart=true
|