add ecosystem.config.js

for pm2 deployments
This commit is contained in:
Luna 2019-02-02 02:53:30 -03:00
parent 88d118799f
commit a6e29e3088
1 changed files with 9 additions and 0 deletions

9
ecosystem.config.js Normal file
View File

@ -0,0 +1,9 @@
module.exports = {
apps : [
{
name: "litecord",
script: "pipenv run hypercorn run:app",
watch: true,
}
]
}