mirror of
https://github.com/furyhawk/api_gateway.git
synced 2026-07-21 02:06:50 +00:00
- Create core application structure with FastAPI - Implement dynamic route registration and management endpoints - Define configuration models for gateway settings, upstreams, and routes - Add proxy request handling for upstream services - Include example configuration and OpenAPI specification files - Set up development dependencies and project metadata
39 lines
440 B
Plaintext
39 lines
440 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
|