artemis/ecosystem.config.js
2025-01-01 16:14:23 +01:00

15 lines
235 B
JavaScript

module.exports = {
apps: [
{
name: "artemis",
script: "./env/bin/python",
args: "-m artemis.bot",
time: true,
env: {
PYTHONUNBUFFERED: "1",
ENV: "production",
},
},
],
};