-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy path.env.local.example
More file actions
46 lines (41 loc) · 2.39 KB
/
Copy path.env.local.example
File metadata and controls
46 lines (41 loc) · 2.39 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
# Copy this file to `.env.local` and fill in the values below.
#
# cp .env.local.example .env.local
#
# `.env.local` is git-ignored, so your local values never get committed.
# ─── Stellar contract ─────────────────────────────────────────────────────────
# Deployed streaming contract addresses on Stellar.
#
# When a contract ID is set for the active network, FlowStar talks to the live
# Soroban contract on that network. When no contract ID is configured, the app
# falls back to an in-memory MOCK mode — streams are stored in memory only and
# reset on reload.
#
# Deploy your own with `./scripts/deploy.sh --update-env` (see DEPLOYMENT.md),
# or use the public testnet deployment below to get started immediately.
NEXT_PUBLIC_STREAM_CONTRACT_ID_TESTNET=CBNDCZTRFNTDAPQLPK2ESOKO4XFMSC4PX37QE75BBYFOYIEWIPMHAKFV
NEXT_PUBLIC_STREAM_CONTRACT_ID_MAINNET=
# ─── Staging environment ──────────────────────────────────────────────────────
#
# Used by the staging branch / PR preview deployments (see .github/workflows/staging.yml).
# Set these as GitHub Actions secrets (STAGING_CONTRACT_ID_TESTNET, VERCEL_TOKEN,
# VERCEL_ORG_ID, VERCEL_PROJECT_ID) in the "staging" environment in your repo settings.
#
# NEXT_PUBLIC_APP_ENV is set to "staging" automatically by the CI workflow; you
# can set it here to simulate a staging build locally.
#
# NEXT_PUBLIC_APP_ENV=staging
# ─── WalletConnect (LOBSTR mobile) ───────────────────────────────────────────
#
# Required for LOBSTR wallet connection via WalletConnect (enables mobile users).
# Get a free project ID at https://cloud.walletconnect.com
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=
# ─── Error tracking (Sentry) ──────────────────────────────────────────────────
# Get your DSN from https://sentry.io → Project → Client Keys.
# The NEXT_PUBLIC_ prefix makes it available in the browser bundle.
# Keep SENTRY_AUTH_TOKEN server-only (used for source map uploads in CI).
NEXT_PUBLIC_SENTRY_DSN=
SENTRY_DSN=
SENTRY_ORG=
SENTRY_PROJECT=
SENTRY_AUTH_TOKEN=