-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
34 lines (25 loc) · 901 Bytes
/
.env.example
File metadata and controls
34 lines (25 loc) · 901 Bytes
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
# SSL Configuration - Disable certificate verification for Aiven
NODE_TLS_REJECT_UNAUTHORIZED=0
# Web3 Provider
NEXT_PUBLIC_ALCHEMY_ID=your-alchemy-id
NEXT_PUBLIC_INFURA_ID=your-infura-id
# App Configuration
NEXT_PUBLIC_APP_NAME=MantleMuse
NEXT_PUBLIC_APP_DESCRIPTION="Invest in Culture. Earn Real Yield."
# API Routes
NEXT_PUBLIC_API_URL=/api
DATABASE_URL=postgresql://user:password@localhost:5432/mantlemuse
# NextAuth Configuration
NEXTAUTH_SECRET=your-secret-key-here-change-in-production-use-openssl-rand-base64-32
NEXTAUTH_URL=http://localhost:3000
# Optional: Database Connection Pool
DATABASE_POOL_MIN=2
DATABASE_POOL_MAX=10
# Blockchain Configuration (Mantle Network)
NEXT_PUBLIC_CHAIN_ID=5000
NEXT_PUBLIC_RPC_URL=https://rpc.mantle.xyz
# Optional: External API Keys
NEXT_PUBLIC_INFURA_ID=your-infura-id
NEXT_PUBLIC_ALCHEMY_ID=your-alchemy-id
# Node Environment
NODE_ENV=development