-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (26 loc) · 1.17 KB
/
.env.example
File metadata and controls
30 lines (26 loc) · 1.17 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
# Alchemy API Configuration
# Get your free API key from https://alchemy.com
# This key enables live data for Ethereum, Arbitrum, Polygon, Optimism, Base, and Solana
# Without this key, only Bitcoin tracking will work
NEXT_PUBLIC_ALCHEMY_API_KEY=
# Supabase Configuration (Optional)
# Enables cloud storage of your wallet addresses and settings
# Get these from your Supabase project: Settings > API
# Without these, data is only stored in browser localStorage
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
# Authentication Settings
# Controls whether the app requires password protection
# Set to 'false' for public/demo deployment
# Set to 'true' for personal use with password protection
AUTH_REQUIRED=false
# Basic Auth Credentials (Required when AUTH_REQUIRED=true)
# These credentials will be used for the browser's auth prompt
# Choose a strong password and never commit these values
BASIC_AUTH_USER=
BASIC_AUTH_PASSWORD=
# Vercel Analytics (Optional)
# Analytics are automatically enabled when deployed on Vercel
# Set to 'false' to disable analytics collection
# Only collects anonymous page view data, no personal information
# NEXT_PUBLIC_VERCEL_ANALYTICS_DISABLED=false