forked from boundlessfi/boundless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (40 loc) · 1.48 KB
/
.env.example
File metadata and controls
52 lines (40 loc) · 1.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
50
51
52
# Stellar Network Configuration
NEXT_PUBLIC_STELLAR_NETWORK=testnet
# Options: testnet, public
# Application Configuration
NEXT_PUBLIC_APP_URL=http://localhost:3000
# Your application's public URL
# API Configuration
NEXT_PUBLIC_API_URL=http://localhost:8000/api
# Your backend API URL
# WalletConnect Configuration
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=your_wallet_connect_project_id
# Get this from https://cloud.walletconnect.com/
# Stellar Horizon URLs (optional - defaults will be used)
NEXT_PUBLIC_HORIZON_TESTNET_URL=https://horizon-testnet.stellar.org
NEXT_PUBLIC_HORIZON_PUBLIC_URL=https://horizon.stellar.org
# Application Metadata
NEXT_PUBLIC_APP_NAME=Boundless
NEXT_PUBLIC_APP_DESCRIPTION=Stellar-based application
NEXT_PUBLIC_APP_ICON=/logo.svg
# Development Settings
NEXT_PUBLIC_DEBUG_MODE=false
# Enable debug logging for wallet operations
# Feature Flags
NEXT_PUBLIC_ENABLE_WALLET_CONNECT=true
NEXT_PUBLIC_ENABLE_MULTI_WALLET=true
NEXT_PUBLIC_ENABLE_NETWORK_SWITCHING=true
# NextAuth Configuration
NEXTAUTH_SECRET=your_nextauth_secret_here
# Generate a random string for this secret
# You can use: openssl rand -base64 32
NEXTAUTH_URL=http://localhost:3000
# Your application's public URL (same as NEXT_PUBLIC_APP_URL)
# Google OAuth Configuration
GOOGLE_CLIENT_ID=your_google_client_id
# Get this from Google Cloud Console
GOOGLE_CLIENT_SECRET=your_google_client_secret
# Get this from Google Cloud Console
# Environment
NODE_ENV=development
# Options: development, production, test