artemis/ecosystem.config.js
2024-03-01 20:51:07 +01:00

18 lines
329 B
JavaScript

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