342f992556
Migrate main meet app to use UV for dependancy management. Also optimized the backend image build sequence for faster rebuilds when dependencies don't change. Also removed compiled django translations files are they are done in the build process now. Changes inspired by drive repo.
39 lines
362 B
Plaintext
39 lines
362 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
|
|
.iml
|
|
db.sqlite3
|
|
.pylint.d
|
|
|
|
**/.idea
|
|
**/.vscode
|
|
**/.pytest_cache
|
|
**/.mypy_cache
|
|
**/.ruff_cache
|
|
|
|
# Frontend
|
|
**/node_modules
|