forked from akordavid373/sealed-auction-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (34 loc) · 1.07 KB
/
Copy path.env.example
File metadata and controls
41 lines (34 loc) · 1.07 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
# Stellar Configuration
STELLAR_NETWORK=testnet
SECRET_KEY=your_secret_key_here
PUBLIC_KEY=your_public_key_here
CONTRACT_ID=
# Stellar RPC URLs
TESTNET_RPC_URL=https://soroban-testnet.stellar.org
MAINNET_RPC_URL=https://mainnet.stellar.org
# Application Configuration
PORT=3000
NODE_ENV=development
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001
DATABASE_PATH=./auctions.db
# Security
SESSION_SECRET=your_session_secret_here
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX_REQUESTS=100
AUTH_RATE_LIMIT_MAX=10
AUTH_RATE_LIMIT_WINDOW_MS=3600000
BID_RATE_LIMIT_MAX=5
BID_RATE_LIMIT_WINDOW_MS=60000
# Testnet Funding (set to 'true' to fund testnet account)
FUND_TESTNET=false
# OAuth Configuration
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
GITHUB_CLIENT_ID=your_github_client_id_here
GITHUB_CLIENT_SECRET=your_github_client_secret_here
# JWT Configuration
JWT_SECRET=your_jwt_secret_here
# APM Configuration
APM_SERVICE_NAME=sealed-auction-platform
APM_SERVER_URL=http://localhost:8200
APM_SECRET_TOKEN=your_apm_secret_token_here