- Add Runtime service to Docker Compose stack - Configure Runtime API integration in Router config - Add mock Runtime server for development - Update Router with Runtime API environment variables - Update Makefile to include Runtime health checks - Configure runtime execution models (Python/TypeScript) - Fix Hanzo Router branding (build with enterprise colors) - Add runtime access points to documentation
11 lines
338 B
Plaintext
11 lines
338 B
Plaintext
PORT=3080
|
|
RAG_PORT=8000
|
|
MEILI_MASTER_KEY=masterkey
|
|
ENDPOINTS=openAI,anthropic,assistants,custom
|
|
|
|
# Security keys (generate random strings)
|
|
CREDS_KEY=a_random_32_character_string_for_creds
|
|
CREDS_IV=a_random_16_character_string_for_creds
|
|
JWT_SECRET=a_random_secret_for_jwt_tokens
|
|
JWT_REFRESH_SECRET=another_random_secret_for_refresh_tokens
|