mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
# =============================================================================
|
|
# RoboCo Environment Configuration
|
|
# =============================================================================
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Application
|
|
ROBOCO_ENVIRONMENT=development
|
|
ROBOCO_DEBUG=true
|
|
ROBOCO_LOG_LEVEL=INFO
|
|
|
|
# API Server
|
|
ROBOCO_HOST=0.0.0.0
|
|
ROBOCO_PORT=8000
|
|
|
|
# Database (PostgreSQL)
|
|
ROBOCO_DATABASE_HOST=localhost
|
|
ROBOCO_DATABASE_PORT=5432
|
|
ROBOCO_DATABASE_USER=roboco
|
|
ROBOCO_DATABASE_PASSWORD=roboco
|
|
ROBOCO_DATABASE_NAME=roboco
|
|
ROBOCO_DATABASE_ECHO=false
|
|
|
|
# Redis
|
|
ROBOCO_REDIS_HOST=localhost
|
|
ROBOCO_REDIS_PORT=6379
|
|
ROBOCO_REDIS_DB=0
|
|
# ROBOCO_REDIS_PASSWORD=
|
|
|
|
# Qdrant (Vector DB)
|
|
ROBOCO_QDRANT_HOST=localhost
|
|
ROBOCO_QDRANT_PORT=6333
|
|
# ROBOCO_QDRANT_API_KEY=
|
|
|
|
# AI/LLM Providers
|
|
ROBOCO_ANTHROPIC_API_KEY=your-anthropic-api-key
|
|
ROBOCO_OPENAI_API_KEY=your-openai-api-key
|
|
|
|
# Security
|
|
ROBOCO_SECRET_KEY=change-me-to-a-long-random-string-at-least-32-chars
|
|
|
|
# CORS (comma-separated origins)
|
|
ROBOCO_CORS_ORIGINS=["http://localhost:3000","http://localhost:5173"]
|