-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathexample.env
More file actions
60 lines (45 loc) · 1.76 KB
/
example.env
File metadata and controls
60 lines (45 loc) · 1.76 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
# ===========================
# REQUIRED FOR LOCAL DEVELOPMENT
# ===========================
# Database connection (Required for app to run)
# Use this for Docker Compose setup:
POSTGRES_URL="postgresql://postgres:postgres@localhost:5432/postgres"
# WalletConnect project ID (Required for wallet connections)
# Get a free project ID at https://cloud.walletconnect.com
NEXT_PUBLIC_WALLET_CONNECT_ID=""
# ===========================
# REQUIRED FOR PRODUCTION
# ===========================
# Forno API key (Required for production - RPC fallback)
NEXT_PUBLIC_FORNO_API_KEY=""
# Infura API key (Required for production - RPC fallback)
# Get yours at https://infura.io
NEXT_PUBLIC_INFURA_API_KEY=""
# Celo Blockscout API key (Required for production - blockchain data)
NEXT_PUBLIC_CELOBLOCKSCOUT_API_KEY=""
# ===========================
# OPTIONAL CONFIGURATION
# ===========================
# RPC endpoint (Optional - defaults to https://forno.celo.org)
NEXT_PUBLIC_RPC_URL="https://forno.celo.org"
# ===========================
# OPTIONAL FEATURES
# ===========================
# Upstash QStash key (Optional - used for stake auto-activation scheduling feature)
# Get yours at https://upstash.com
UPSTASH_KEY=""
# Private key for stake activation (Optional - used for executing auto-activation of pending votes)
STAKE_ACTIVATION_PRIVATE_KEY=""
# GitHub App credentials (Optional - used for creating delegation PRs)
GITHUB_APP_ID=""
GITHUB_INSTALLATION_ID=""
GITHUB_PRIVATE_KEY=""
GITHUB_REPO_OWNER=""
GITHUB_REPO_NAME=""
# Slack bot token (Optional - used for production alerts)
SLACK_TOKEN=""
# ===========================
# SCRIPTS ONLY
# ===========================
# Private RPC node (Optional - used by backfill scripts for faster blockchain data fetching)
PRIVATE_NO_RATE_LIMITED_NODE=""