Yes
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m36s

This commit is contained in:
2026-03-17 00:22:54 +01:00
parent 44663ec051
commit 687a3c922c
18 changed files with 1573 additions and 43 deletions

22
ecosystem.config.js Normal file
View File

@@ -0,0 +1,22 @@
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"
}
}
]
};