-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecosystem.config.js
31 lines (31 loc) · 1.23 KB
/
ecosystem.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
module.exports = {
apps: [{
name: 'Cowin Alert Vaccination',
script: '.server.js',
watch: false,
env: {
'watch': false,
'PORT': 3030,
'NODE_ENV': 'development',
'cowinGetStateList': 'https://cdn-api.co-vin.in/api/v2/admin/location/states',
'cowinGetDistrictList': 'https://cdn-api.co-vin.in/api/v2/admin/location/districts/',
'cowinGetSlotsAvailable': 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/calendarByDistrict'
},
env_staging: {
'watch': false,
'PORT': 3030,
'NODE_ENV': 'staging',
'cowinGetStateList': 'https://cdn-api.co-vin.in/api/v2/admin/location/states',
'cowinGetDistrictList': 'https://cdn-api.co-vin.in/api/v2/admin/location/districts/',
'cowinGetSlotsAvailable': 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/calendarByDistrict'
},
env_production: {
'watch': false,
'PORT': 3030,
'NODE_ENV': 'production',
'cowinGetStateList': 'https://cdn-api.co-vin.in/api/v2/admin/location/states',
'cowinGetDistrictList': 'https://cdn-api.co-vin.in/api/v2/admin/location/districts/',
'cowinGetSlotsAvailable': 'https://cdn-api.co-vin.in/api/v2/appointment/sessions/calendarByDistrict'
}
}]
};