chore: sincroniza projeto para gitea

This commit is contained in:
Tiago
2025-11-29 21:31:52 -03:00
parent 33d8645eb4
commit 7e7a0f8867
129 changed files with 24999 additions and 6757 deletions

View File

@@ -15,6 +15,25 @@ npm run deploy:local
# 3. Acesse: http://localhost:5000
```
### 1.1 🔄 **Servidor Local com Auto-Reinicialização (PM2)**
Para manter o sistema rodando mesmo após reiniciar o servidor:
```bash
# Deploy completo com PM2 (mantém rodando sempre)
./scripts/deploy-servidor.sh
# Ou configure manualmente:
npm install -g pm2
pm2 start ecosystem.config.js
pm2 save
pm2 startup
# Acesse: http://localhost:5000
```
**📖 Guia completo:** Ver `DEPLOY-SERVIDOR-LOCAL.md` para instruções detalhadas
### 2. ☁️ **Nuvem Gratuita (Vercel)**
```bash