14 lines
530 B
Bash
14 lines
530 B
Bash
# Copy this file to .env and fill in your values.
|
|
# NEVER commit .env — it is listed in .gitignore.
|
|
|
|
# Groq API key — obtain from https://console.groq.com/keys
|
|
GROQ_API_KEY=your_groq_api_key_here
|
|
|
|
# Server port (optional, defaults to 5000)
|
|
PORT=5000
|
|
|
|
# Python interpreter for the retrieval daemon (optional, defaults to "python").
|
|
# Must be "python", "python3", or an absolute path to a Python 3 executable.
|
|
# Do not set this to an arbitrary binary -- the value is validated on startup.
|
|
# PYTHON_BIN=/path/to/venv/bin/python3
|