opensearch-api 0.1.0

High-performance REST API gateway for OpenSearch with security, observability and multi-tenant support
# OpenSearch API Configuration

# API server address
ADDR=127.0.0.1:3000

# OpenSearch connection URL
OPENSEARCH_URL=http://localhost:9200

# Logging level (debug, info, warn, error)
RUST_LOG=info

# Domain name for the API (configured by setup.py)
DOMAIN=

# Optional: Authentication settings
# AUTH_ENABLED=false
# AUTH_TOKEN=your-secret-token

# Optional: Rate limiting
# RATE_LIMIT_REQUESTS=100
# RATE_LIMIT_WINDOW_SECS=60