From c06377493570e939d383f2eb5d09a0b5bf2688d9 Mon Sep 17 00:00:00 2001 From: Veauville Raphael Date: Sun, 31 Mar 2024 21:43:59 +0200 Subject: [PATCH] Fix deploy --- ecosystem.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ecosystem.config.js b/ecosystem.config.js index c6b82630..0b9f6e8c 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -3,7 +3,7 @@ module.exports = { { name: "alexandrie-backend", cwd: "./backend/dist", - script: "--interpreter ~/.bun/bin/bun main.js", + script: "bun main.js", env: { NODE_ENV: "production", PORT: 8201, @@ -15,7 +15,7 @@ module.exports = { { name: "alexandrie-frontend", cwd: "./frontend", - script: "--interpreter ~/.bun/bin/bun .output/server/index.mjs", + script: "bun .output/server/index.mjs", env: { NODE_ENV: "production", PORT: 8200, @@ -24,7 +24,7 @@ module.exports = { { name: "alexandrie-dashboard", cwd: "./dashboard", - script: "--interpreter ~/.bun/bin/bun .output/server/index.mjs", + script: "bun .output/server/index.mjs", env: { NODE_ENV: "production", },