This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy path.env.example
More file actions
49 lines (39 loc) · 1.39 KB
/
.env.example
File metadata and controls
49 lines (39 loc) · 1.39 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
# Gemini-Flow Environment Variables Template
# Copy this file to .env and fill in your actual values
# OpenAI Configuration
OPENAI_API_KEY=sk-YOUR_OPENAI_API_KEY_HERE
OPENAI_ORGANIZATION_ID=org-YOUR_ORG_ID_HERE
# Google Cloud / Vertex AI
GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account-key.json
GOOGLE_PROJECT_ID=your-google-cloud-project-id
VERTEX_AI_LOCATION=us-central1
# GitHub Integration
GITHUB_PERSONAL_ACCESS_TOKEN=github_pat_YOUR_GITHUB_TOKEN_HERE
# Search & Knowledge APIs
TAVILY_API_KEY=tvly-YOUR_TAVILY_API_KEY_HERE
PERPLEXITY_API_KEY=pplx-YOUR_PERPLEXITY_API_KEY_HERE
KAGI_API_KEY=YOUR_KAGI_API_KEY_HERE
JINA_AI_API_KEY=jina_YOUR_JINA_API_KEY_HERE
BRAVE_API_KEY=YOUR_BRAVE_API_KEY_HERE
FIRECRAWL_API_KEY=fc-YOUR_FIRECRAWL_API_KEY_HERE
# Database & Storage
SUPABASE_ACCESS_TOKEN=sbp_YOUR_SUPABASE_TOKEN_HERE
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-supabase-anon-key
# Backup Configuration
BACKUP_INTERVAL_HOURS=24 # Backup every 24 hours
MAX_BACKUPS=30 # Keep last 30 backups
API_KEY=your-secure-api-key-for-admin-endpoints
# Development Configuration
NODE_ENV=development
DEBUG=gemini-flow:*
LOG_LEVEL=info
# Security
JWT_SECRET=your-jwt-secret-key
ENCRYPTION_KEY=your-32-character-encryption-key
# Performance Tuning
NODE_OPTIONS=--max-old-space-size=8192
UV_THREADPOOL_SIZE=16
# Container Configuration
DOCKER_BUILDKIT=1
COMPOSE_DOCKER_CLI_BUILD=1