-
Notifications
You must be signed in to change notification settings - Fork 0
/
pm2.json
36 lines (36 loc) · 1.21 KB
/
pm2.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"apps": [
{
"script": "server.js",
"name": "server",
"exec_mode": "cluster",
"instances": 1,
"watch": true,
"log_date_format": "YYYY-MM-DD HH:mm Z",
"merge_logs": true,
"env": {
"NODE_ENV": "production",
"REACT_APP_API_PORT": "10001",
"REACT_APP_API_URL": "https://api-thirdparty.demo.supertokens.io",
"REACT_APP_WEBSITE_PORT": "10000",
"REACT_APP_WEBSITE_URL": "https://thirdparty.demo.supertokens.io"
}
},
{
"script": "api-server.js",
"name": "api-server",
"exec_mode": "cluster",
"instances": 1,
"watch": true,
"log_date_format": "YYYY-MM-DD HH:mm Z",
"merge_logs": true,
"env": {
"NODE_ENV": "production",
"REACT_APP_API_PORT": "10001",
"REACT_APP_API_URL": "https://api-thirdparty.demo.supertokens.io",
"REACT_APP_WEBSITE_PORT": "10000",
"REACT_APP_WEBSITE_URL": "https://thirdparty.demo.supertokens.io"
}
}
]
}