-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy path.env.example
More file actions
73 lines (56 loc) · 4.31 KB
/
Copy path.env.example
File metadata and controls
73 lines (56 loc) · 4.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
# Ancore Local Development Environment
# ──────────────────────────────────────────────────────────────────────────────
# SERVICES
# ──────────────────────────────────────────────────────────────────────────────
# Indexer Service (GraphQL + REST API)
# Port: 8080
# Used by: apps, relayer, ai-agent
INDEXER_URL=http://localhost:8080
INDEXER_GRAPHQL_URL=http://localhost:8080/graphql
# Relayer Service (Transaction relay)
# Port: 3001
# Used by: apps, ai-agent
RELAYER_URL=http://localhost:3001
# CORS allowed origins for relayer (comma-separated)
# If not set, defaults to '*' (allow all origins)
# Example: "http://localhost:3000,https://app.example.com"
ALLOWED_ORIGINS=
# AI Agent Service (Intent validation & workflow orchestration)
# Port: 3002
# Used by: apps
AI_AGENT_URL=http://localhost:3002
# ──────────────────────────────────────────────────────────────────────────────
# EXTENSION WALLET
# ──────────────────────────────────────────────────────────────────────────────
# All service URLs exposed to extension popup
REACT_APP_INDEXER_URL=http://localhost:8080
REACT_APP_RELAYER_URL=http://localhost:3001
REACT_APP_AI_AGENT_URL=http://localhost:3002
# ──────────────────────────────────────────────────────────────────────────────
# MOBILE WALLET (Expo)
# ──────────────────────────────────────────────────────────────────────────────
# EXPO_PUBLIC_* prefix required for client-side exposure
EXPO_PUBLIC_INDEXER_URL=http://localhost:8080
EXPO_PUBLIC_RELAYER_URL=http://localhost:3001
EXPO_PUBLIC_AI_AGENT_URL=http://localhost:3002
# ──────────────────────────────────────────────────────────────────────────────
# WEB DASHBOARD
# ──────────────────────────────────────────────────────────────────────────────
VITE_INDEXER_URL=http://localhost:8080
VITE_RELAYER_URL=http://localhost:3001
VITE_AI_AGENT_URL=http://localhost:3002
# Horizon API endpoint for Stellar account queries
# Defaults to testnet if not specified
VITE_HORIZON_URL=https://horizon-testnet.stellar.org
# ──────────────────────────────────────────────────────────────────────────────
# STELLAR / SOROBAN
# ──────────────────────────────────────────────────────────────────────────────
# Network: 'testnet' | 'public' | 'standalone'
STELLAR_NETWORK=testnet
# Soroban RPC endpoint
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
# ──────────────────────────────────────────────────────────────────────────────
# DEVELOPMENT
# ──────────────────────────────────────────────────────────────────────────────
NODE_ENV=development
DEBUG=ancore:*