mirror of
https://github.com/furyhawk/api_gateway.git
synced 2026-07-20 09:47:59 +00:00
40 lines
461 B
Plaintext
40 lines
461 B
Plaintext
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Build and packaging artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Test and tooling caches
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Local environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Editor and OS files
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Local runtime/log artifacts
|
|
*.log
|
|
*.pid
|
|
config/api_keys.json
|