51 lines
404 B
Plaintext
51 lines
404 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv
|
|
venv
|
|
*.egg-info
|
|
dist
|
|
build
|
|
|
|
# Testing
|
|
.pytest_cache
|
|
.coverage
|
|
htmlcov
|
|
.tox
|
|
.nox
|
|
|
|
# Type checking
|
|
.mypy_cache
|
|
.dmypy.json
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# Docker
|
|
docker-compose*.yml
|
|
Dockerfile*
|
|
|
|
# Other
|
|
.pre-commit-config.yaml
|
|
tests
|
|
searxng
|