forked from Lead-Studios/veritix-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (28 loc) · 1.32 KB
/
Copy path.env.example
File metadata and controls
35 lines (28 loc) · 1.32 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
# ============================================================
# VeriTix Web – Frontend Environment Variables
# ============================================================
# Copy this file to .env.local and fill in the values.
# Never commit .env.local to version control.
#
# Next.js conventions:
# NEXT_PUBLIC_* – exposed to the browser bundle
# (no prefix) – server-side only (API routes, SSR)
# ============================================================
# ----- Backend API -----
# Base URL of the VeriTix backend REST API
NEXT_PUBLIC_API_BASE_URL=http://localhost:4000/api
# ----- Stellar / Blockchain -----
# Stellar network to connect to: "testnet" | "mainnet"
NEXT_PUBLIC_STELLAR_NETWORK=testnet
# Horizon server URL (leave blank to use the SDK default for the chosen network)
NEXT_PUBLIC_HORIZON_URL=
# ----- Authentication -----
# Secret used to sign/verify server-side session tokens (server-only)
AUTH_SECRET=replace-with-a-long-random-string
# ----- Feature Flags -----
# Set to "true" to enable wallet-connect flow in the UI
NEXT_PUBLIC_ENABLE_WALLET_CONNECT=false
# Enable Google OAuth sign-up/sign-in (set to "true" when backend is configured)
NEXT_PUBLIC_GOOGLE_AUTH_ENABLED=false
# Enable Wallet-based sign-up/sign-in (set to "true" when wallet integration is ready)
NEXT_PUBLIC_WALLET_AUTH_ENABLED=false