Files
front-AT/ecosystem.config.cjs
T
stern 17acb358d9
Validar AT / validate (push) Successful in 1m30s
Validar AT / deploy-dev (push) Successful in 1m11s
Estandarizar AT y automatizar despliegue
2026-08-06 06:01:32 -06:00

26 lines
504 B
JavaScript

module.exports = {
apps: [
{
name: "at-dev",
cwd: "/var/www/html/front/pruebas/at",
script: "node_modules/next/dist/bin/next",
args: "start",
interpreter: "/home/deploy/.nvm/versions/node/v22.21.1/bin/node",
env: {
NODE_ENV: "production",
PORT: 3356,
HOSTNAME: "0.0.0.0",
},
autorestart: true,
watch: false,
min_uptime: "10s",
max_restarts: 10,
restart_delay: 3000,
time: true,
},
],
};