Skip to content

Commit

Permalink
Merge pull request #100 from nullabork/fix/bind
Browse files Browse the repository at this point in the history
eco system file needed a different name for production
zenril authored Nov 29, 2020
2 parents d22c1c8 + 5ff72b6 commit f7eb658
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ecosystem.config.js
Original file line number Diff line number Diff line change
@@ -24,5 +24,17 @@ module.exports = {
GOOGLE_APPLICATION_CREDENTIALS: '/root/.google/auth.json',
},
},
{
name: 'serverprod',
script: './bot.js',
exp_backoff_restart_delay: 100,
error_file: 'err.log',
out_file: 'out.log',
log_file: 'combined.log',
env: {
NODE_ENV: 'production',
GOOGLE_APPLICATION_CREDENTIALS: '/root/.google/auth.json',
},
},
],
};

0 comments on commit f7eb658

Please sign in to comment.