ecosystem

This commit is contained in:
2025-12-11 18:48:21 +00:00
parent 397eb89ee2
commit 7c44246704
2 changed files with 13 additions and 13 deletions

13
ecosystem.config.js Normal file
View File

@@ -0,0 +1,13 @@
module.exports = {
apps: [
{
name: "next-app",
script: "npm",
args: "start",
env: {
PORT: 5000,
NODE_ENV: "production"
}
}
]
};