-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp-pm2.json
More file actions
21 lines (21 loc) · 724 Bytes
/
Copy pathapp-pm2.json
File metadata and controls
21 lines (21 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"apps" : [{
"name" : "aot-app",
"script" : "/app/aot/index.js",
"watch" : false,
"error_file" : "/var/log/pm2/pm2-err.log",
"out_file" : "/var/log/pm2/pm2-out.log",
"pid_file" : "/home/app/app.pid",
"cwd" : "/app/aot",
"env": {
"NODE_ENV": "development",
"DATABASE_URL": "postgres://${postgres_user}:${postgres_pw}@${postgres_host}:5432/atlas_of_thrones?ssl=false",
"REDIS_HOST": "${redis_host}"
},
"env_production" : {
"NODE_ENV": "production",
"DATABASE_URL": "postgres://${postgres_user}:${postgres_pw}@${postgres_host}:5432/atlas_of_thrones?ssl=false",
"REDIS_HOST": "${redis_host}"
}
}]
}