All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m36s
22 lines
344 B
JavaScript
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"
|
|
}
|
|
}
|
|
]
|
|
}; |