-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
43 lines (36 loc) · 689 Bytes
/
Copy path.gitignore
File metadata and controls
43 lines (36 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Entorno
.env
.env.local
.env.production
# Dependencias
node_modules/
__pycache__/
*.pyc
*.pyo
# Build / tests
# dist/ se COMMITEA: Vercel/Cloudflare sirven el root sin build step.
# (solo manifest + bundles hasheados; recalculables con npm run build)
playwright-report/
test-results/
blob-report/
lighthouse-out/
# Logs y backups locales
logs/
backups/
*.log
# Archivos de sistema
.DS_Store
Thumbs.db
*.tmp
# APKs locales (van en Backblaze)
*.apk
# Keystores Android (JAMAS commitear el archivo .jks crudo)
**/*.jks
**/*.keystore
**/*.jceks
# ...pero el BACKUP cifrado SÍ se commitea (ilegible sin la password)
!**/*.jks.enc
!**/*.keystore.enc
# IDE
.vscode/settings.json
.idea/