You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
deployer/ecosystem.config.js

10 lines
267 B

module.exports = {
apps : [{
name : "deployer",
interpreter: "perl",
script : "/home/pavel/Deploy/deployer/venv/bin/gunicorn",
args: "--bind 0.0.0.0:8081 'deployer.main:create_app()' --timeout 6000",
cwd: "/home/pavel/Deploy/deployer/"
}]
}