Skip to content

Commit 8dc4bcc

Browse files
feat: add pm2 config (#628)
1 parent 2439898 commit 8dc4bcc

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

ecosystem.config.cjs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
apps: [
3+
{
4+
name: "web",
5+
script: "npm",
6+
args: "start -- --http --http-wait-for-sync=false",
7+
},
8+
{
9+
name: "indexer",
10+
script: "npm",
11+
args: "start -- --indexer --http",
12+
},
13+
],
14+
};

0 commit comments

Comments
 (0)