Spaces:
Sleeping
Sleeping
| # Environment Configuration Template | |
| # Copy this to .env and fill in your values | |
| # Required: Groq API Key for AI chat | |
| GROQ_API_KEY=your_groq_api_key_here | |
| # Optional: MyAnimeList API (for MAL import feature) | |
| MAL_CLIENT_ID=your_mal_client_id | |
| MAL_CLIENT_SECRET=your_mal_client_secret | |
| # Server Configuration (defaults work for development) | |
| HOST=0.0.0.0 | |
| PORT=8000 | |
| # LLM Model (default: llama-3.1-8b-instant) | |
| LLM_MODEL=llama-3.1-8b-instant | |
| # Database Path (default: ./aniverse.db) | |
| DATABASE_PATH=./aniverse.db | |
| # ChromaDB Paths (defaults work for Docker) | |
| CHROMA_DB_PATH=./data/chroma_db | |
| MANGA_CHROMA_DB_PATH=./data/manga_chroma_db | |
| # CORS Origins (comma-separated for production) | |
| CORS_ORIGINS=http://localhost:5500,http://localhost:3000 | |
| # Production Mode (set to 'true' for production) | |
| PRODUCTION=false | |