We don't want to copy this over to the Docker daemon, since this directory can be quite large.
38 lines
334 B
Plaintext
38 lines
334 B
Plaintext
# Python
|
|
__pycache__
|
|
*.pyc
|
|
**/__pycache__
|
|
**/*.pyc
|
|
venv
|
|
.venv
|
|
|
|
# System-specific files
|
|
.DS_Store
|
|
**/.DS_Store
|
|
|
|
# Docker
|
|
docker compose.*
|
|
env.d
|
|
|
|
# Docs
|
|
docs
|
|
*.md
|
|
*.log
|
|
|
|
# Development/test cache & configurations
|
|
data
|
|
.cache
|
|
.circleci
|
|
.git
|
|
.vscode
|
|
.iml
|
|
.idea
|
|
db.sqlite3
|
|
.mypy_cache
|
|
.pylint.d
|
|
.pytest_cache
|
|
|
|
# Frontend
|
|
node_modules
|
|
.next
|