-
Notifications
You must be signed in to change notification settings - Fork 0
/
prod.config.js
39 lines (35 loc) · 1.15 KB
/
prod.config.js
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
37
38
39
// Prod settings
module.exports = {
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps : [
// Concepcion Transparente
{
name : "ct",
script : "/root/web-apps/concepcion-transparente/bin/www",
env: {
PORT: 3000,
// ct-scrapper Mongo instance
MONGODB_URI: "mongodb://heroku_c3t3jndt:[email protected]:25716/heroku_c3t3jndt"
}
},
// Concepcion Transparente Scrapper
{
name: "ct-scrapper",
script: "/root/web-apps/concepcion-transparente-scrapper/app.js",
env: {
PORT: 3005,
// ct-scrapper Mongo instance
MONGODB_URI: "mongodb://heroku_c3t3jndt:[email protected]:25716/heroku_c3t3jndt",
EMAIL_HOST: "smtp.gmail.com",
EMAIL_PORT: "465",
EMAIL_USERNAME: "[email protected]",
EMAIL_SEND_FROM: "Concepción Transparente Scrapper<[email protected]>",
EMAIL_PASSWORD: "testingServir!",
EMAIL_SEND_TO: "[email protected],[email protected]"
}
}
]
}