forked from xqcxx/stellarguard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker
More file actions
36 lines (29 loc) · 1.02 KB
/
Copy path.env.docker
File metadata and controls
36 lines (29 loc) · 1.02 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
# Docker Environment Configuration for StellarGuard
# This file is used by docker-compose.yml for development
# Backend Configuration
PORT=8000
NODE_ENV=development
# Database Configuration
POSTGRES_USER=stellarguard
POSTGRES_PASSWORD=password
POSTGRES_DB=stellarguard
DATABASE_URL=postgresql://stellarguard:password@postgres:5432/stellarguard
# Redis Configuration
REDIS_URL=redis://redis:6379
# Stellar Configuration
STELLAR_NETWORK=testnet
STELLAR_RPC_URL=https://soroban-testnet.stellar.org
HORIZON_URL=https://horizon-testnet.stellar.org
NETWORK_PASSPHRASE=Test SDF Network ; September 2015
# Frontend Configuration
NEXT_PUBLIC_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
NEXT_PUBLIC_HORIZON_URL=https://horizon-testnet.stellar.org
NEXT_PUBLIC_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
# Contract IDs (to be populated after deployment)
TREASURY_CONTRACT_ID=
GOVERNANCE_CONTRACT_ID=
TOKEN_VAULT_CONTRACT_ID=
ACCESS_CONTROL_CONTRACT_ID=
# API Configuration
API_KEY=your_api_key_here
CORS_ORIGIN=http://localhost:3000