forked from val-lop20/Pagina-de-Asistencia-MAC
75 lines
716 B
Plaintext
75 lines
716 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
*.md
|
|
README.md
|
|
LICENSE
|
|
COMO_USAR_ESCANER_USB.md
|
|
|
|
# Node modules
|
|
**/node_modules
|
|
frontend/node_modules
|
|
frontend/dist
|
|
frontend/.vite
|
|
|
|
# Python
|
|
**/__pycache__
|
|
**/*.pyc
|
|
**/*.pyo
|
|
**/*.pyd
|
|
.Python
|
|
*.so
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
.pytest_cache
|
|
.coverage
|
|
htmlcov
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# IDEs
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Database
|
|
*.sqlite3
|
|
*.db
|
|
db.sqlite3
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Static files (se generan en build)
|
|
backend/staticfiles/
|
|
backend/static/
|
|
backend/media/
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|