Update 0.6.0: Docker support

This commit is contained in:
Charlie Laabs
2019-05-25 15:05:37 -05:00
parent 6f3268dc07
commit 3459dd7413
8 changed files with 533 additions and 532 deletions

12
ecosystem.config.js Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
apps: [{
name: 'markbot',
script: './index.js',
env: {
NODE_ENV: 'development',
},
env_production: {
NODE_ENV: 'production',
},
}],
};