| # Knowledge Assistant RAG Environment Configuration | |
| # Database Configuration | |
| DATABASE_URL=sqlite:///./data/knowledge_assistant.db | |
| # JWT Authentication Configuration | |
| JWT_SECRET=your-super-secret-jwt-key-change-in-production | |
| JWT_LIFETIME_SECONDS=3600 | |
| # User Registration Settings | |
| USER_REGISTRATION_ENABLED=true | |
| EMAIL_VERIFICATION_REQUIRED=false | |
| # External Services | |
| QDRANT_HOST=qdrant | |
| GEMINI_API_KEY=your-gemini-api-key-here | |
| # CORS Configuration | |
| CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000,http://frontend:8080 | |
| # Frontend Configuration (for rag-quest-hub) | |
| VITE_API_BASE_URL=http://localhost:8000 | |
| VITE_API_TIMEOUT=30000 | |
| VITE_ENABLE_REGISTRATION=true |