ab55da280c
The .dockerignore added in 8a0d82f incorrectly excluded wait-for-db.sh,
but the Dockerfile copies it as the container entrypoint. This caused
the Docker build to fail with 'failed to compute cache key: not found'.
Quality gates: verified file exists, py_compile passed.
43 lines
388 B
Plaintext
43 lines
388 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Test artifacts
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Local env files
|
|
.env
|
|
.env.local
|
|
|
|
# Alembic cache
|
|
alembic/versions/__pycache__/
|
|
|
|
# Pi lens cache
|
|
.pi-lens/
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
|
|
# Scripts not needed in container
|
|
scripts/
|