========================================= GUIA RÁPIDO DE DEPLOY - MOZBIT TECHNOLOGIES ========================================= 📋 CHECKLIST DE DEPLOY ✅ 1. Configurar Python App no cPanel Spaceship - cPanel > Python App - Criar nova aplicação - Python 3.13 - Diretório: /home/SEU_USERNAME/public_html ✅ 2. Upload de Arquivos via FTP - Conectar com FileZilla - Upload de TODOS os arquivos para public_html - Manter estrutura de pastas ✅ 3. Variáveis de Ambiente (cPanel) MAIL_PASSWORD=Fondo1234@ SECRET_KEY=46210cd6681772a1616662f4c70ee54b1b512987573253d21f98cb60d79c3cd3 PYTHONUNBUFFERED=1 ✅ 4. Instalar Dependências (SSH) cd ~/public_html pip3.13 install --user -r requirements.txt ✅ 5. Configurar .htaccess IMPORTANTE: Editar linha 9 PassengerAppRoot /home/SEU_USERNAME/public_html (substituir SEU_USERNAME pelo seu username real) ✅ 6. Testar Site Acesse: https://mozbittechnologies.digital ========================================= 📁 ESTRUTURA FINAL NO SERVIDOR: public_html/ ├── .htaccess ✅ ├── passenger_wsgi.py ✅ ├── Procfile ✅ ├── runtime.txt ✅ ├── requirements.txt ✅ ├── run.py ✅ ├── app/ │ ├── __init__.py │ ├── routes.py │ ├── static/ │ └── templates/ └── (não enviar config.py, venv/, __pycache__) ========================================= ⚠️ IMPORTANTE: 1. NÃO enviar config.py (contém senha) 2. NÃO enviar venv/ (ambiente virtual local) 3. NÃO enviar __pycache__/ 4. config.py está no .gitignore ✅ ========================================= 📞 SUPORTE: - Logs de erro: cPanel > Errors - SSH Access: cPanel > Terminal - Python App: cPanel > Python App ========================================= 🔄 APÓS DEPLOY: 1. Testar formulários de contacto 2. Verificar emails recebidos 3. Testar em diferentes navegadores 4. Verificar responsividade mobile =========================================