-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathecosystem.config.js
More file actions
33 lines (33 loc) · 959 Bytes
/
ecosystem.config.js
File metadata and controls
33 lines (33 loc) · 959 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
30
31
32
33
module.exports = {
apps: [
{
name: "recatch-service",
script: "./build/bin/www.js",
watch: true,
env: {
"PORT": 8082,
"NODE_ENV": "development"
},
env_production: {
"PORT": 8082,
"NODE_ENV": "production",
"MONGODB_HOST": '',
"MONGODB_DATABASE":'',
"MONGODB_PORT":'',
"MONGODB_USER":'',
"MONGODB_PWD":'',
"SERVER_HOST":'',
"QINIU_DOUPLOAD":'',
"QINIU_PUBLIC_BUCKET_DOMAIN":'',
"QINIU_ACCESS_KEY":'',
"QINIU_SECRET_KEY":'',
"QINIU_BUCKET":'',
"EMAIL_HOST":'',
"EMAIL_PORT":'',
"EMAIL_USER":'',
"EMAIL_PASS":'',
"REGISTOR":''
}
}
]
};