e4866c6dee
- Add SAM (Sistema de Administración Académica) integration with sync endpoints - Add deployment automation (deploy.sh, remote-setup.sh, setup-nginx-ssl.sh) - Add nginx proxy configuration for SSL with Let's Encrypt - Add audio response support for student lessons (migrations, handlers) - Add audio evaluations admin page - Update CORS to support wildcard subdomains for norteamericano.cl - Add comprehensive deployment documentation (DESPLIEGUE.md, ManualDeConfiguracion.md) - Update docker-compose.yml with nginx-proxy and acme-companion services - Remove outdated documentation files Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
40 lines
724 B
Plaintext
40 lines
724 B
Plaintext
# --- Rust / Cargo ---
|
|
# Ignora la carpeta de compilación (es muy pesada)
|
|
target/
|
|
# Si usas herramientas de profiling o tests adicionales
|
|
**/*.rs.bk
|
|
|
|
# --- Frontend (web/studio y web/lms) ---
|
|
# Ignora las librerías de Node
|
|
node_modules/
|
|
# Ignora las carpetas de compilación de frontend (dist, build, .next, etc.)
|
|
dist/
|
|
.cache/
|
|
out/
|
|
build/
|
|
.next/
|
|
|
|
# --- Variables de Entorno (SEGURIDAD) ---
|
|
# Nunca subas tus llaves secretas o credenciales
|
|
.env
|
|
.env*.local
|
|
|
|
# --- Archivos de Sistema y Editores ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# --- Logs ---
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
# --- Project-specific Development Keys ---
|
|
services/lms-service/dev_keys/
|
|
|
|
# --- SSH Keys ---
|
|
*.pem
|
|
ubuntu.pem
|