-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
65 lines (52 loc) · 1.58 KB
/
Copy path.env.example
File metadata and controls
65 lines (52 loc) · 1.58 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
# ============================================
# Stellar Local — Environment Variables
# ============================================
# Copy this file to .env and fill in values
# App
NODE_ENV=development
PORT=3000
APP_URL=http://localhost:3000
# Database — PostgreSQL
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=stellar_local
POSTGRES_PASSWORD=your_postgres_password
POSTGRES_DB=stellar_local_db
# Database — MongoDB
MONGO_URI=mongodb://localhost:27017/stellar_local
# Redis (caching / sessions)
REDIS_URL=redis://localhost:6379
# JWT Auth
JWT_SECRET=your_jwt_secret_here
JWT_EXPIRES_IN=7d
# Stellar Network
STELLAR_NETWORK=testnet
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
STELLAR_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
# Soroban RPC
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
# IPFS
IPFS_API_URL=https://ipfs.infura.io:5001
IPFS_GATEWAY_URL=https://ipfs.io/ipfs
# AWS S3 (optional storage)
AWS_ACCESS_KEY_ID=your_aws_access_key
AWS_SECRET_ACCESS_KEY=your_aws_secret_key
AWS_REGION=us-east-1
S3_BUCKET_NAME=stellar-local-storage
# Email (notifications)
SMTP_HOST=smtp.mailtrap.io
SMTP_PORT=587
SMTP_USER=your_smtp_user
SMTP_PASS=your_smtp_password
EMAIL_FROM=no-reply@stellarlocal.io
# WebSocket
WS_PORT=3001
# API Gateway
API_GATEWAY_PORT=4000
# Service URLs (internal)
MARKETPLACE_SERVICE_URL=http://localhost:3001
COMMUNITY_FUND_SERVICE_URL=http://localhost:3002
RESOURCE_SHARING_SERVICE_URL=http://localhost:3003
MUTUAL_AID_SERVICE_URL=http://localhost:3004
GOVERNANCE_SERVICE_URL=http://localhost:3005
REPUTATION_SERVICE_URL=http://localhost:3006