Spaces:
Paused
Paused
Create supervisord.conf
Browse files- supervisord.conf +13 -0
supervisord.conf
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[supervisord]
|
2 |
+
nodaemon=true
|
3 |
+
|
4 |
+
[program:postgres]
|
5 |
+
command=/usr/lib/postgresql/15/bin/postgres -D /var/lib/postgresql/data
|
6 |
+
autostart=true
|
7 |
+
autorestart=true
|
8 |
+
|
9 |
+
[program:langfuse]
|
10 |
+
command=npm start
|
11 |
+
directory=/app
|
12 |
+
autostart=true
|
13 |
+
autorestart=true
|