Files
aranroig.com/ecosystem.config.js
BinarySandia04 687a3c922c
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m36s
Yes
2026-03-17 00:22:54 +01:00

22 lines
344 B
JavaScript

module.exports = {
apps: [
{
name: "backend",
cwd: "./backend",
script: "npm",
args: "start",
env: {
NODE_ENV: "production"
}
},
{
name: "frontend",
cwd: "./aranroig",
script: "npm",
args: "start",
env: {
NODE_ENV: "production"
}
}
]
};