-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
54 lines (49 loc) · 2.3 KB
/
.env.example
File metadata and controls
54 lines (49 loc) · 2.3 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
50
51
52
53
54
# =============================================================================
# CALCULUS ENVIRONMENT CONFIGURATION
# =============================================================================
# Copy this file to '.env' and fill in your actual values
# Never commit your actual .env file to version control!
# =============================================================================
# AI MODEL CONFIGURATION
# =============================================================================
# OpenRouter API key (required)
# Get this from: https://openrouter.ai/keys
OPENROUTER_API_KEY=your-openrouter-api-key-here
# =============================================================================
# BRIGHTDATA WEB INTELLIGENCE
# =============================================================================
# BrightData provides web scraping capabilities
# Sign up at: https://brightdata.com/
# Your BrightData API key
# Found in: Dashboard > Account Settings > API Access
BRIGHTDATA_API_KEY=your-brightdata-api-key-here
# Your BrightData Unlocker zone identifier
# Found in: Dashboard > Zones > [Your Unlocker Zone] > Zone Settings
BRIGHTDATA_UNLOCKER_ZONE=your-brightdata-zone-identifier-here
# =============================================================================
# SETUP INSTRUCTIONS
# =============================================================================
#
# 1. OpenRouter Setup:
# - Create account at https://openrouter.ai/
# - Add credits to your account
# - Generate an API key from https://openrouter.ai/keys
# - Set OPENROUTER_API_KEY to your generated key
#
# 2. BrightData Setup:
# - Create account at https://brightdata.com/
# - Navigate to "Zones" and create an "Unlocker" zone
# - Copy the zone identifier and API key from your dashboard
# - Set BRIGHTDATA_API_KEY and BRIGHTDATA_UNLOCKER_ZONE accordingly
#
# 3. Usage:
# - Copy this file to '.env': cp .env.example .env
# - Fill in your actual values
# - Run: bun run dev
#
# =============================================================================
# SECURITY NOTES
# =============================================================================
# - Never commit your actual .env file to version control
# - Keep your API keys secure and rotate them regularly
# - Use environment-specific configurations for different deployments