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