.
This commit is contained in:
parent
e575d9d836
commit
cfa08ea61d
76
.gitignore
vendored
76
.gitignore
vendored
@ -1,8 +1,76 @@
|
||||
# ===========================
|
||||
# Python básico
|
||||
# ===========================
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.so
|
||||
*.egg
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# ===========================
|
||||
# Entornos virtuales
|
||||
# ===========================
|
||||
venv/
|
||||
__pycache__
|
||||
input/
|
||||
output/
|
||||
.env/
|
||||
.venv/
|
||||
|
||||
# ===========================
|
||||
# Configuración de IDEs
|
||||
# ===========================
|
||||
#.vscode/
|
||||
.idea/
|
||||
*.code-workspace
|
||||
|
||||
# ===========================
|
||||
# Herramientas / tests
|
||||
# ===========================
|
||||
.mypy_cache/
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.cache/
|
||||
|
||||
# ===========================
|
||||
# Logs del proyecto
|
||||
# ===========================
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# ===========================
|
||||
# Ficheros de entorno
|
||||
# ===========================
|
||||
#environment/*.env
|
||||
#environment/*.env.*
|
||||
# Si quieres tener uno de ejemplo en git:
|
||||
# !environment/dev.example.env
|
||||
|
||||
# ===========================
|
||||
# Docker
|
||||
# ===========================
|
||||
*.pid
|
||||
docker-compose.override.yml
|
||||
|
||||
# ===========================
|
||||
# Sistemas operativos
|
||||
# ===========================
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# ===========================
|
||||
# Firebird / binarios externos
|
||||
# ===========================
|
||||
#firebird/*.so
|
||||
#firebird/*.dll
|
||||
#firebird/*.exe
|
||||
FACTUGES.FDB
|
||||
|
||||
|
||||
# ===========================
|
||||
# Otros
|
||||
# ===========================
|
||||
last_execution*.txt
|
||||
*.json
|
||||
*.log
|
||||
Loading…
Reference in New Issue
Block a user