Kennedy Johnson
Add LaunchPadAI undergraduate internship advisor panel.
de852c2
Raw
History Blame Contribute Delete
935 Bytes
# 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=../launchpad_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 launchpad_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