chore(ops): restore all source files in newwhats.clube67.com
continuous-integration/webhook Falha no deploy de clube67_newwhats.local (VPS 4)

This commit is contained in:
VPS 4 Deploy Agent
2026-05-18 03:28:29 +02:00
parent 52f73753e7
commit 2f8c04a0a7
755 changed files with 466910 additions and 0 deletions
@@ -0,0 +1,27 @@
module.exports = {
apps: [
{
name: 'newwhats-backend',
script: 'npm',
args: 'run dev',
cwd: '/home/deploy/projetos/newwhats.local/backend',
watch: false, // tsx watch já cuida do reload
env: {
NODE_ENV: 'development',
},
// Mostra logs coloridos no pm2 logs
time: true,
},
{
name: 'newwhats-frontend',
script: 'npm',
args: 'run dev',
cwd: '/home/deploy/projetos/newwhats.local/frontend',
watch: false, // next dev tem Fast Refresh nativo
env: {
NODE_ENV: 'development',
},
time: true,
},
],
}