uv.lock was ignored but required by Dockerfile.backend (uv sync --frozen). CI docker-build fails without it. Also remove from .gitignore - lock files should be version-controlled for reproducible builds. Closes #45
38 lines
346 B
Plaintext
38 lines
346 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
*.egg-info/
|
|
.venv/
|
|
|
|
# Frontend
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# Data
|
|
data/*
|
|
!data/.gitkeep
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
*.log
|
|
|
|
# Android
|
|
android/.gradle/
|
|
android/.idea/
|
|
android/*.iml
|
|
android/app/build/
|
|
android/app/debug
|
|
android/app/release |