- Python project at services/search/ with pyproject.toml (setuptools) - gRPC server boilerplate using grpc.aio with graceful shutdown - YAML-based config loading (host, port, searxng_url, model_gateway_addr, audit_addr) - SearchServiceServicer stub (returns Unimplemented) - 8 config unit tests passing - Fixed gen/python protobuf dependency to >=7.34 (matching gencode version) - Added .venv and *.egg-info to .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
192 B
Plaintext
21 lines
192 B
Plaintext
# Rust build artifacts
|
|
**/target/
|
|
|
|
# Python bytecode
|
|
**/__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Python virtual environments
|
|
.venv/
|
|
|
|
# Python eggs/dist
|
|
*.egg-info/
|
|
dist/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|