-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecosystem.config.js
40 lines (40 loc) · 1.04 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
32
33
34
35
36
37
38
39
40
module.exports = {
apps: [
{
name: 'sonic-faucet-api',
script: 'node',
args: 'build/server.js',
autorestart: true,
max_restarts: 5,
min_uptime: '10s',
restart_delay: 5000,
out_file: 'logs/sonic-faucet-api/normal.log',
error_file: 'logs/sonic-faucet-api/error.log',
combine_logs: true,
},
{
name: 'sonic-sync-wallets',
script: 'ts-node',
args: 'source/scripts/syncWallets.ts',
autorestart: true,
max_restarts: 5,
min_uptime: '10s',
restart_delay: 5000,
out_file: 'logs/sonic-sync-wallets/normal.log',
error_file: 'logs/sonic-sync-wallets/error.log',
combine_logs: true,
},
{
name: 'sonic-check-faucet',
script: 'ts-node',
args: 'source/scripts/checkFaucet.ts',
autorestart: true,
max_restarts: 5,
min_uptime: '10s',
restart_delay: 5000,
out_file: 'logs/sonic-check-faucet/normal.log',
error_file: 'logs/sonic-check-faucet/error.log',
combine_logs: true,
},
]
};