mirror of
https://github.com/artiemis/artemis.git
synced 2026-02-14 08:31:55 +00:00
18 lines
328 B
JavaScript
18 lines
328 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "artemis",
|
|
script: "./env/bin/python",
|
|
args: "-m artemis.bot",
|
|
out_file: "/dev/null",
|
|
error_file: "/dev/null",
|
|
log_file: "./artemis.log",
|
|
time: true,
|
|
env: {
|
|
PYTHONUNBUFFERED: "1",
|
|
ENV: "production",
|
|
},
|
|
},
|
|
],
|
|
};
|