| |
| API_TITLE="Sanad LLM API" |
| API_DESCRIPTION="A FastAPI application for hadith narrator analysis" |
| API_VERSION="1.0.0" |
| DEBUG=True |
| PORT=8000 |
| HOST="0.0.0.0" |
|
|
| |
| ALLOWED_ORIGINS="http://localhost,http://localhost:3000,https://sanad-check.vercel.app" |
|
|
| |
| JWT_SECRET_KEY="your-super-secret-jwt-key-change-this-in-production" |
| JWT_ALGORITHM="HS256" |
| JWT_ACCESS_TOKEN_EXPIRE_MINUTES=30 |
| JWT_REFRESH_TOKEN_EXPIRE_DAYS=7 |
|
|
| |
| SUPABASE_URL="https://your-project.supabase.co" |
| SUPABASE_SERVICE_KEY="your-supabase-service-role-key" |
| SUPABASE_ANON_KEY="your-supabase-anon-key" |
|
|
| |
| GOOGLE_API_KEY="your-google-api-key" |
| GROQ_API_KEY="your-groq-api-key" |
|
|
| |
| DATABASE_URL="postgresql://user:password@localhost:5432/sanad_llm" |
|
|
| |
| LOG_LEVEL="INFO" |
|
|