21 lines
222 B
Plaintext
21 lines
222 B
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
**/__pycache__/
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Development
|
|
.env.local
|
|
.env.development
|
|
*.log
|
|
|
|
# Formatting and linting
|
|
**/.ruff_cache
|