# ★ 빌드 컨텍스트가 레포 루트다(solution/backend/Dockerfile 주석 참조).
#   컨텍스트가 넓어진 만큼 여기서 확실히 잘라내야 이미지가 붓지 않는다.
**/__pycache__/
*.pyc
**/.pytest_cache/
.git/
.venv/
**/.venv/
node_modules/
**/node_modules/
**/dist/
**/.vite/

# 프론트·문서는 백엔드 이미지에 들어갈 이유가 없다.
solution/frontend/
solution/site/
solution/shared/
admin/frontend/
docs/
nginx/
postgres-init/
**/*.md
solution/backend/tests/
solution/backend/loadtest/

# 시크릿 — 이미지에 굽지 않는다. Dockerfile 이 example 을 복사해 넣고 실값은 compose env 로 준다.
.env
.env.*
!.env.example
