-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
49 lines (43 loc) · 2.48 KB
/
Copy path.env.example
File metadata and controls
49 lines (43 loc) · 2.48 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# =============================================================================
# CiteSight Environment Configuration
# =============================================================================
# Copy this file to .env.local and fill in your actual values
# NEVER commit .env.local to version control!
# =============================================================================
# -----------------------------------------------------------------------------
# REQUIRED: CourtListener API Configuration
# -----------------------------------------------------------------------------
# Get your API key from: https://www.courtlistener.com/help/api/
# Free tier: 5000 requests/hour
VITE_COURTLISTENER_API_KEY=your_courtlistener_api_key_here
VITE_COURTLISTENER_BASE_URL=https://www.courtlistener.com/api/rest/v4
# -----------------------------------------------------------------------------
# OPTIONAL: Application Configuration
# -----------------------------------------------------------------------------
VITE_APP_ENV=development
# -----------------------------------------------------------------------------
# OPTIONAL: Build Mode Configuration
# -----------------------------------------------------------------------------
# Controls which UI mode to build:
# - "self-hosted" (default): Minimal UI, validation tool as homepage
# - "marketing": Full landing page, roadmap, and promotional content
VITE_BUILD_MODE=self-hosted
# -----------------------------------------------------------------------------
# OPTIONAL: Cloudflare Turnstile (Bot Protection)
# -----------------------------------------------------------------------------
# Get these from: https://dash.cloudflare.com/
# Free tier available
VITE_TURNSTILE_SITE_KEY=your_turnstile_site_key_here
TURNSTILE_SECRET_KEY=your_turnstile_secret_key_here
# -----------------------------------------------------------------------------
# OPTIONAL: LlamaParse (Cloud PDF Extraction)
# -----------------------------------------------------------------------------
# Get your API key from: https://cloud.llamaindex.ai
# Free tier: 1000 pages/day
VITE_LLAMA_CLOUD_API_KEY=your_llama_cloud_api_key_here
# -----------------------------------------------------------------------------
# NOTES:
# -----------------------------------------------------------------------------
# 1. The VITE_ prefix makes variables available in the browser bundle
# 2. Non-VITE_ variables are only available server-side
# =============================================================================