artemis/ecosystem.config.js
2024-04-27 00:55:32 +02:00

18 lines
343 B
JavaScript

module.exports = {
apps: [
{
name: "artemis",
script: "/bin/bash",
args: "-c './env/bin/python -m artemis.bot'",
out_file: "/dev/null",
error_file: "/dev/null",
log_file: "./artemis.log",
time: true,
env: {
PYTHONUNBUFFERED: "1",
ENV: "production",
},
},
],
};