Spaces:
Sleeping
Sleeping
File size: 943 Bytes
fddd8f4 c6537a8 fddd8f4 c6537a8 fddd8f4 c6537a8 fddd8f4 c6537a8 fddd8f4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copy this file to `.env` (same directory) for a native, non-Docker local run.
# The backend auto-loads it on startup.
# Path to the app config, relative to this backend directory.
CONFIG_PATH=../muscle_growth_config.yaml
# Where the SQLite database + uploaded docs live. Any writable folder works;
# on a native run this replaces the container's /data mount.
DATA_DIR=./local_data
# Signs auth tokens — set to a long random string.
JWT_SECRET_KEY=change-me-to-a-long-random-string
# Default provider is OpenAI GPT-5.4-mini (see muscle_growth_config.yaml -> llm.provider).
# Set your OpenAI API key here (get one from Clary, or use your own).
OPENAI_API_KEY=
# Optional alternatives:
# GEMINI_API_KEY= # only if you switch llm.provider back to "gemini"
VLLM_API_KEY=
# Frontend origins allowed to call this backend during native dev
# (CRA dev server defaults to port 3000).
CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
|