diff --git a/.gitignore b/.gitignore index c4696aa..7fea241 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file