ecosystem.config.js: s/pipenv/poetry

This commit is contained in:
Luna 2021-07-10 03:24:57 -03:00
parent d58f1aaad6
commit 706f22e1b6
1 changed files with 8 additions and 8 deletions

View File

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