Spaces:
Runtime error
Runtime error
Julien Chaumond
commited on
Commit
·
fcfa224
1
Parent(s):
c5ed897
pm2 conf
Browse files- pm2/production.json +11 -0
pm2/production.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"apps": [ {
|
| 3 |
+
"name" : "convai_web",
|
| 4 |
+
"cwd" : "/home/web/convai_web/",
|
| 5 |
+
"script" : "./server/dist/server.js",
|
| 6 |
+
|
| 7 |
+
"out_file" : "/home/log/nodes/convai_web.log",
|
| 8 |
+
"error_file": "/home/log/nodes/convai_web.log",
|
| 9 |
+
"merge_logs": true
|
| 10 |
+
} ]
|
| 11 |
+
}
|