114 líneas
1.1 KiB
Plaintext
114 líneas
1.1 KiB
Plaintext
# Docker ignore file for HDH deployment
|
|
# Excludes unnecessary files from Docker build context
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
hdh-env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Results and logs (will be mounted as volumes)
|
|
hdh_results/
|
|
benchmark_results/
|
|
qasm_examples/
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Test files
|
|
tests/
|
|
test_*.py
|
|
*_test.py
|
|
|
|
# Configuration examples
|
|
.env.example
|
|
config.example.yaml
|
|
|
|
# Large data files
|
|
*.pkl
|
|
*.h5
|
|
*.hdf5
|
|
*.parquet
|
|
|
|
# Jupyter notebooks
|
|
*.ipynb
|
|
.ipynb_checkpoints/
|
|
|
|
# Coverage reports
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
|
|
# Pytest
|
|
.pytest_cache/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Compiled shared libraries
|
|
*.dll
|
|
*.so
|
|
*.dylib |