forked from InsurNiffy/niff-Stellar-shurance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
58 lines (47 loc) · 2.75 KB
/
Copy path.env.example
File metadata and controls
58 lines (47 loc) · 2.75 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
# =============================================================================
# NiffyInsure Frontend — Environment Variables
# Copy this file to .env.local and fill in values for your environment.
# Owner notes are in parentheses — contact that team when rotating values.
# =============================================================================
# -----------------------------------------------------------------------------
# Backend API (owner: backend team — update on each deployment)
# -----------------------------------------------------------------------------
# Base URL of the NiffyInsure REST API. No trailing slash.
NEXT_PUBLIC_API_URL=http://localhost:3001
# -----------------------------------------------------------------------------
# Stellar / Soroban RPC (owner: infra team — per-network)
# -----------------------------------------------------------------------------
# Soroban RPC endpoint. Switch to mainnet URL for production.
NEXT_PUBLIC_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
# Horizon REST endpoint. Switch to mainnet URL for production.
NEXT_PUBLIC_HORIZON_URL=https://horizon-testnet.stellar.org
# Active network identifier. Affects explorer links and consistency warnings.
# Values: testnet | public
NEXT_PUBLIC_NETWORK=testnet
# -----------------------------------------------------------------------------
# Contract addresses (owner: contracts team — update after each deploy)
# Rotation: when deployment-registry.json changes, update this value and redeploy.
# -----------------------------------------------------------------------------
# Deployed niffyinsure contract ID for the active network.
NEXT_PUBLIC_CONTRACT_ID=
# -----------------------------------------------------------------------------
# IPFS (owner: infra team)
# -----------------------------------------------------------------------------
# IPFS gateway base URL used to resolve CIDs. No trailing slash.
NEXT_PUBLIC_IPFS_GATEWAY=https://ipfs.io/ipfs
# -----------------------------------------------------------------------------
# Captcha (owner: security team)
# -----------------------------------------------------------------------------
# Public site key — safe to expose in the browser.
NEXT_PUBLIC_CAPTCHA_SITE_KEY=
# Provider: turnstile | hcaptcha
NEXT_PUBLIC_CAPTCHA_PROVIDER=turnstile
# -----------------------------------------------------------------------------
# CSP / Observability (server-only — never prefix with NEXT_PUBLIC_)
# -----------------------------------------------------------------------------
# Set to "true" to switch CSP to report-only mode during rollout.
# CSP_REPORT_ONLY=false
# Violation collector endpoint (e.g. Sentry, report-uri.com).
# CSP_REPORT_URI=
# Set to "true" to enable Next.js bundle analyzer output.
# ANALYZE=false