All checks were successful
Build and Publish Docker Image / build (push) Successful in 43s
59 lines
737 B
Plaintext
59 lines
737 B
Plaintext
# Ignore Python bytecode files
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Ignore distribution / packaging files
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
wheels/
|
|
|
|
# Ignore virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Ignore test and coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# Ignore Jupyter Notebook checkpoints
|
|
.ipynb_checkpoints
|
|
|
|
# Ignore IPython profile directories
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# Ignore pyenv files
|
|
.python-version
|
|
|
|
# Ignore VS Code settings
|
|
.vscode/
|
|
|
|
# Ignore Dockerfile and Dockerignore itself
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Ignore Git files
|
|
.git/
|
|
.gitignore
|
|
|
|
# Ignore logs and temporary files
|
|
*.log
|
|
*.tmp |