From 967a3d23ce8ec04dc223cc457b236cf4f5bd5154 Mon Sep 17 00:00:00 2001 From: CCS Admin Date: Fri, 27 Feb 2026 13:06:01 +0000 Subject: [PATCH] chore: add PM2 ecosystem config (port 3003) Co-Authored-By: Claude Opus 4.6 --- ecosystem.config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..3905a91 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,14 @@ +module.exports = { + apps: [ + { + name: "sensualmoment", + script: "node_modules/next/dist/bin/next", + args: "start", + cwd: "/home/frontend/frontend.sensualmoment.de", + env: { + PORT: 3003, + NODE_ENV: "production", + }, + }, + ], +}