12 lines
320 B
Bash
12 lines
320 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 bin (for venv); optional
|
|
PYTHON_BIN=/path/to/bin/python
|