-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpm2.json
More file actions
executable file
·29 lines (29 loc) · 886 Bytes
/
pm2.json
File metadata and controls
executable file
·29 lines (29 loc) · 886 Bytes
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
{
"apps": [{
"name": "polarisos",
"script": "build/app.js",
"exec_mode": "cluster",
"instances": 1,
"env": {
"NODE_ENV": "development"
},
"env_demo" : {
"NODE_ENV": "demo",
"NODE_PORT": "5556",
"ES_HOSTS": "http://elastic:8yuj2AXchy9TFaG1dkCL@elasticsearch:9200",
"MINIO_HOST": "minio",
"MINIO_ACCESS_KEY": "D6WATDX0QDZ1I61CACYZ",
"MINIO_SECRET_KEY": "NdD50gVGH40OeK2s+W3kPnF+qU9DntxO2HwDT2luoC"
},
"env_production" : {
"NODE_ENV": "production",
"NODE_PORT": "5556",
"ES_HOSTS": "http://elastic:hiOIPWZv9sLFJK8QcZ2k@elasticsearch:9200",
"GROBID_HOST": "grobid",
"GROBID_PORT": 8080,
"MINIO_HOST": "minio",
"MINIO_ACCESS_KEY": "D6WATDX0QDZ1I61CACYZ",
"MINIO_SECRET_KEY": "NdD50gVGH40OeK2s+W3kPnF+qU9DntxO2HwDT2luoC"
}
}]
}