-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 953 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (20 loc) · 953 Bytes
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
# Environment: development | staging | production
STELLAR_SCAFFOLD_ENV=development
# Stellar CLI config directory
XDG_CONFIG_HOME=".config"
# Network configuration (uncomment ONE block)
# --- Local development ---
PUBLIC_STELLAR_NETWORK="LOCAL"
PUBLIC_STELLAR_NETWORK_PASSPHRASE="Standalone Network ; February 2017"
PUBLIC_STELLAR_RPC_URL="http://localhost:8000/rpc"
PUBLIC_STELLAR_HORIZON_URL="http://localhost:8000"
# --- Testnet ---
# PUBLIC_STELLAR_NETWORK=TESTNET
# PUBLIC_STELLAR_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
# PUBLIC_STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# PUBLIC_STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
# Contract ID — must match the deployed contract.
# For local dev: auto-populated by `stellar scaffold watch`
# For testnet/mainnet: update manually after deployment
# Also stored as TESTNET_CONTRACT_ID GitHub secret for CI/CD
PUBLIC_GENE_SPLICER_CONTRACT_ID=YOUR_CONTRACT_ID_HERE