Edwin Salguero
Add comprehensive Docker integration with multi-environment support, monitoring, and deployment tools
6cd35fc
# Git | |
.git | |
.gitignore | |
.gitattributes | |
# Python | |
__pycache__ | |
*.pyc | |
*.pyo | |
*.pyd | |
.Python | |
env | |
pip-log.txt | |
pip-delete-this-directory.txt | |
.tox | |
.coverage | |
.coverage.* | |
.cache | |
nosetests.xml | |
coverage.xml | |
*.cover | |
*.log | |
.git | |
.mypy_cache | |
.pytest_cache | |
.hypothesis | |
# Virtual environments | |
.env | |
.venv | |
env/ | |
venv/ | |
ENV/ | |
env.bak/ | |
venv.bak/ | |
# IDEs | |
.vscode/ | |
.idea/ | |
*.swp | |
*.swo | |
*~ | |
# OS | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# Project specific | |
logs/* | |
!logs/.gitkeep | |
data/* | |
!data/.gitkeep | |
models/* | |
!models/.gitkeep | |
*.csv | |
*.json | |
*.pkl | |
*.h5 | |
*.pth | |
# Documentation | |
docs/ | |
*.md | |
!README.md | |
# Tests | |
tests/ | |
pytest.ini | |
# Docker | |
Dockerfile | |
docker-compose.yml | |
.dockerignore | |
# Jupyter | |
.ipynb_checkpoints | |
*.ipynb | |
# Temporary files | |
tmp/ | |
temp/ | |
*.tmp | |
*.temp |