Skip to content

Commit

Permalink
add pm2 ecosystem config
Browse files Browse the repository at this point in the history
  • Loading branch information
ntraut committed Jan 26, 2021
1 parent bc7de87 commit 3c3ecdb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
node_modules/
yarn-error.log
.history
.env
/.env
logs/
.DS_Store
spec/coverage
build
/spec/coverage
/build
perf.csv
.vscode
.eslintcache
globalConfig.json
/globalConfig.json
14 changes: 14 additions & 0 deletions ecosystem.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: 'connect',
script: 'src/index.js',
watch: '.',
},
{
name: 'connect-sandbox',
script: 'src/sandbox.js',
watch: '.',
},
],
};

0 comments on commit 3c3ecdb

Please sign in to comment.