All checks were successful
CI / update (push) Successful in 1m10s
- Implement local Ollama integration for bilingual (DE/EN) alt text generation - Add image management UI to German edit page and English translation section - Update Card and recipe detail pages to display alt text from images array - Include GenerateAltTextButton component for manual alt text generation - Add bulk processing admin page for batch alt text generation - Optimize images to 1024x1024 before AI processing for 75% faster generation - Store alt text in recipe.images[].alt and translations.en.images[].alt
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
# Database Configuration
|
|
MONGO_URL="mongodb://user:password@host:port/database?authSource=admin"
|
|
|
|
# Authentication Secrets (runtime only - not embedded in build)
|
|
AUTHENTIK_ID="your-authentik-client-id"
|
|
AUTHENTIK_SECRET="your-authentik-client-secret"
|
|
|
|
# Static Configuration (embedded in build - OK to be public)
|
|
AUTHENTIK_ISSUER="https://sso.example.com/application/o/your-app/"
|
|
|
|
# File Storage
|
|
IMAGE_DIR="/path/to/static/files"
|
|
|
|
# Optional: Development Settings
|
|
# DEV_DISABLE_AUTH="true"
|
|
# ORIGIN="http://127.0.0.1:3000"
|
|
|
|
# Optional: Additional Configuration
|
|
# BEARER_TOKEN="your-bearer-token"
|
|
# COOKIE_SECRET="your-cookie-secret"
|
|
# PEPPER="your-pepper-value"
|
|
# ALLOW_REGISTRATION="1"
|
|
# AUTH_SECRET="your-auth-secret"
|
|
# USDA_API_KEY="your-usda-api-key"
|
|
|
|
# Translation Service (DeepL API)
|
|
DEEPL_API_KEY="your-deepl-api-key"
|
|
DEEPL_API_URL="https://api-free.deepl.com/v2/translate" # Use https://api.deepl.com/v2/translate for Pro
|
|
|
|
# AI Vision Service (Ollama for Alt Text Generation)
|
|
OLLAMA_URL="http://localhost:11434" # Local Ollama server URL
|