Files
lasuite-docs/.dockerignore
T
Manuel Raynaud 8ec3ae880f 🙈(docker) ignore **/.venv files
Since we migrated to uv, the venv folder does not live anymore at the
project root but inside the src/backend directory. Add a rule in the
.dockerignore to ignore it.
2026-09-08 08:56:58 +02:00

40 lines
354 B
Plaintext

# Python
__pycache__
*.pyc
**/__pycache__
**/*.pyc
venv
.venv
**/.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