45 lines
524 B
Plaintext
45 lines
524 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
build/
|
|
dist/
|
|
|
|
# Virtual environments and local configuration
|
|
.venv/
|
|
.venv-*/
|
|
venv/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Runtime files
|
|
*.sqlite3
|
|
staticfiles/
|
|
media/
|
|
|
|
# Editors and operating systems
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Tool caches
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.tox/
|
|
|
|
# PHP/Composer and Store runtime data
|
|
vendor/
|
|
composer.phar
|
|
.phpunit.cache/
|
|
.phpunit.result.cache
|
|
store/data/*
|
|
!store/data/.gitkeep
|
|
|
|
# Local build verification output
|
|
*.whl
|