aa9be83758
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
40 lines
321 B
Plaintext
40 lines
321 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Virtual environment
|
|
venv/
|
|
env/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Documentation temporary files
|
|
*.tmp
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|