-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpm2.json
35 lines (35 loc) · 1.04 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
{
"apps": {
"name": "musicoin-api",
"script": "./app.js",
"cwd": "./",
"args": "",
"interpreter": "",
"interpreter_args": "",
"watch": false,
"ignore_watch": [
"node_modules",
"logs"
],
"exec_mode": "cluster_mode",
"instances": 4,
"max_memory_restart": 8,
"error_file": "./logs/app-err.log",
"out_file": "./logs/app-out.log",
"merge_logs": true,
"log_date_format": "YYYY-MM-DD HH:mm:ss",
"min_uptime": "60s",
"max_restarts": 30,
"autorestart": true,
"cron_restart": "",
"restart_delay": 60,
"env": {
"NODE_ENV": "production",
"MUSICOIN_API_PORT": 8082,
"MONGO_ENDPOINT": "mongodb://localhost",
"IPFS_READ_ENDPOINT": "http://staging.musicoin.org/ipfs",
"SENDGRID_API_KEY": "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",
"ITUNES_SHARED_SECRET":""
}
}
}