-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy path.env.example
More file actions
78 lines (66 loc) · 2.98 KB
/
.env.example
File metadata and controls
78 lines (66 loc) · 2.98 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Aptos Explorer Environment Variables
# Copy this file to .env.local and fill in your values
# ============================================================================
# NETWORK CONFIGURATION
# ============================================================================
# Custom devnet URL (optional)
# Default: https://api.devnet.staging.aptoslabs.com/v1
# APTOS_DEVNET_URL=https://api.devnet.staging.aptoslabs.com/v1
# ============================================================================
# API KEYS
# ============================================================================
# Override the default public API keys for each network.
# These are client IDs used for rate limiting on the Aptos API Gateway.
# Leave unset to use the default public keys.
# VITE_APTOS_MAINNET_API_KEY=AG-YOUR-MAINNET-KEY
# VITE_APTOS_TESTNET_API_KEY=AG-YOUR-TESTNET-KEY
# VITE_APTOS_DEVNET_API_KEY=AG-YOUR-DEVNET-KEY
# VITE_APTOS_DECIBEL_API_KEY=AG-YOUR-DECIBEL-KEY
# VITE_APTOS_SHELBYNET_API_KEY=AG-YOUR-SHELBYNET-KEY
# VITE_APTOS_LOCAL_API_KEY=
# Backend keys
# APTOS_MAINNET_API_KEY=AG-YOUR-MAINNET-KEY
# APTOS_TESTNET_API_KEY=AG-YOUR-TESTNET-KEY
# APTOS_DEVNET_API_KEY=AG-YOUR-DEVNET-KEY
# APTOS_DECIBEL_API_KEY=AG-YOUR-DECIBEL-KEY
# APTOS_SHELBYNET_API_KEY=AG-YOUR-SHELBYNET-KEY
# APTOS_LOCAL_API_KEY=
# ============================================================================
# ANALYTICS & TRACKING
# ============================================================================
# Google Tag Manager ID (optional)
# Default: GTM-ND9VTF4
# REACT_APP_GTM_ID=GTM-XXXXXXX
# Google Analytics Tracking ID (optional)
# Default: G-8XH7V50XK7
# GA_TRACKING_ID=G-XXXXXXXXXX
# ============================================================================
# DEVELOPMENT OPTIONS
# ============================================================================
# Node environment
# Values: development, production, test
# NODE_ENV=development
# Feature tier — controls the "Development Mode" / "Early Development Mode"
# banner and dev-only UI (e.g. Aptos Names banner). Also readable via a
# "feature_name" cookie at runtime.
# Values: prod, dev, earlydev
# VITE_FEATURE_NAME=prod
# ============================================================================
# NOTES
# ============================================================================
#
# Vite Environment Variables:
# - Variables prefixed with VITE_ are exposed to the client-side bundle
# - Variables prefixed with REACT_APP_ are also supported for compatibility
# - Other variables are only available during build time
#
# Security:
# - Never commit .env.local or .env files with real secrets
# - Use .env.local for local development overrides
# - Production secrets should be configured in your deployment platform
# (e.g., Netlify environment variables)
#
# API Keys Note:
# The default API keys are public client identifiers that are rate-limited
# on the server side. They are safe to use in client-side code but can be
# overridden if you have your own Aptos API Gateway keys.