mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-14 05:37:53 +02:00
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.
40 lines
354 B
Plaintext
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
|