Files
aranroig.com/ecosystem.config.js
BinarySandia04 3e0cdf8cc4
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 12s
First test commit
2026-03-17 18:50:04 +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"
}
}
]
};