chore: add PM2 ecosystem config (port 3003)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
CCS Admin 2026-02-27 13:06:01 +00:00
parent f4e610e81e
commit 967a3d23ce

14
ecosystem.config.js Normal file
View file

@ -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",
},
},
],
}