mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-03 18:22:57 +00:00
36 lines
1.4 KiB
Bash
36 lines
1.4 KiB
Bash
REACT_APP_API_URL=/api/v1
|
|
REACT_APP_ASSET_BASE_URL=http://127.0.0.1:8080
|
|
REACT_APP_NAME=Fotbal Club Manager
|
|
REACT_APP_ENV=development
|
|
|
|
# FACR API Configuration - Local instance
|
|
# Backend exposes the FACR proxy under /api/v1/facr
|
|
REACT_APP_FACR_API_BASE_URL=/api/v1/facr
|
|
REACT_APP_FACR_API_TIMEOUT=5000 # 5 seconds
|
|
REACT_APP_FACR_CACHE_TTL=3600000 # 1 hour in milliseconds
|
|
|
|
# Club selection for homepage (required)
|
|
# Example: Sparta Praha UUID
|
|
# REACT_APP_FACR_CLUB_ID=00000000-0000-0000-0000-000000000000
|
|
# football | futsal (default football)
|
|
# REACT_APP_FACR_CLUB_TYPE=football
|
|
|
|
# Homepage Layout (sparta or classic)
|
|
REACT_APP_HOMEPAGE_LAYOUT=classic
|
|
REACT_APP_ESHOP_URL=http://localhost:3100
|
|
|
|
# OpenRouter (for AI blog generation)
|
|
# Get a key at https://openrouter.ai
|
|
# Do not commit real keys. Set in deployment environment.
|
|
# Example key format: sk-or-v1-********************************
|
|
OPENROUTER_API_KEY=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
|
|
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
|
|
# Defaults can be overridden per environment
|
|
OPENROUTER_MODEL=mistralai/mistral-small-3.2-24b-instruct:free
|
|
OPENROUTER_FALLBACK_MODEL=mistralai/mistral-nemo:free
|
|
# Optional headers to identify your site/app to OpenRouter
|
|
OPENROUTER_SITE_URL=http://localhost:8080
|
|
OPENROUTER_APP_NAME=Fotbal Club Manager
|
|
|
|
REACT_APP_ERROR_INGEST_URL=http://127.0.0.1:8083/api/v1/errors
|
|
REACT_APP_ERROR_INGEST_TOKEN= |