From 248243770c0c4fad430f32bb9fb9756117644a6e Mon Sep 17 00:00:00 2001 From: artie Date: Sat, 27 Apr 2024 12:06:49 +0200 Subject: [PATCH] use python directly --- ecosystem.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecosystem.config.js b/ecosystem.config.js index c63be50..3f0bac2 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -2,8 +2,8 @@ module.exports = { apps: [ { name: "artemis", - script: "/bin/bash", - args: "-c './env/bin/python -m artemis.bot'", + script: "./env/bin/python", + args: "-m artemis.bot", out_file: "/dev/null", error_file: "/dev/null", log_file: "./artemis.log",