-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (22 loc) · 1.46 KB
/
.env.example
File metadata and controls
26 lines (22 loc) · 1.46 KB
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
26
# ─────────────────────────────────────────────
# JurisFind API – Environment Variables Template
# Copy this to .env and fill in real values
# NEVER commit the real .env to git
# ─────────────────────────────────────────────
# ── Groq API ─────────────────────────────────
# Get from: https://console.groq.com/keys
GROQ_API_KEY=your_groq_api_key_here
GROQ_MODEL=llama-3.3-70b-versatile
# ── Azure Blob Storage ────────────────────────
# Get from: Azure Portal → Storage Account → Access Keys → Connection string
# Uncomment when deploying to production with Azure Blob
# AZURE_STORAGE_CONNECTION_STRING=DefaultEndpointsProtocol=https;AccountName=YOUR_ACCOUNT_NAME;AccountKey=YOUR_ACCOUNT_KEY;EndpointSuffix=core.windows.net
# AZURE_DATA_CONTAINER=data
# ── Storage Mode ─────────────────────────────
# true = use local api/data/ folder (local dev)
# false = use Azure Blob Storage (production)
USE_LOCAL_FILES=true
# ── Server ───────────────────────────────────
# Use 0.0.0.0 on VM (Docker), localhost for local dev
API_HOST=localhost
API_PORT=8000