-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
executable file
·44 lines (37 loc) · 1.8 KB
/
.env.example
File metadata and controls
executable file
·44 lines (37 loc) · 1.8 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
# Example Environment Variables for Local Development
#
# This file is OPTIONAL and only needed for local development convenience.
# Production uses Google Secret Manager exclusively.
#
# To use: Copy this file to .env and add your actual values
# The .env file is gitignored and should NEVER be committed
#
# Alternatively, you can export these as environment variables directly:
# export GEMINI_API_KEY="your-key-here"
# Google Gemini API Key
# Get your API key from: https://makersuite.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# Cloudflare Turnstile Secret Key (for server-side verification)
# Get your keys from: https://dash.cloudflare.com/turnstile
# Note: Only the SECRET key goes here. The SITE key is public and in FileUploader.tsx
TURNSTILE_SECRET_KEY=your_turnstile_secret_key_here
# Session Secret (for session management)
# Can be any random string for development
SESSION_SECRET=your_random_session_secret_here
# WinDBG Server API Key (for remote WinDBG analysis)
# This enables real WinDBG analysis via the remote server
# If not set, the app falls back to local dump parsing
WINDBG_API_KEY=your_windbg_api_key_here
# Upstash Redis (for persistent caching across deployments)
# Get your credentials from: https://console.upstash.com/
UPSTASH_REDIS_REST_URL=https://your-instance.upstash.io
UPSTASH_REDIS_REST_TOKEN=your_upstash_token_here
# Cloudflare Cache Purge (deploy-time only, not used by the app at runtime)
# Used by Cloud Build and deploy-with-secret.sh to purge CDN cache on deploy
# The purge token needs "Zone - Cache Purge - Purge" permission
CLOUDFLARE_PURGE_TOKEN=your_cloudflare_purge_token_here
CLOUDFLARE_ZONE_ID=your_cloudflare_zone_id_here
# Optional: Project configuration (defaults are set in scripts)
# PROJECT_ID=project-bigfoot
# REGION=us-east1
# SERVICE_NAME=bsod-analyzer