19 lines
276 B
Plaintext
19 lines
276 B
Plaintext
# Ignorar entornos virtuales
|
|
.venv/
|
|
venv/
|
|
|
|
# Ignorar caché de Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Ignorar archivos de caché y logs
|
|
.cache/
|
|
*.log
|
|
|
|
# Ignorar carpetas de caché y uploads, pero conservar .gitkeep
|
|
/cache/*
|
|
!/cache/.gitkeep
|
|
|
|
/static/uploads/*
|
|
!/static/uploads/.gitkeep
|