-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 871 Bytes
/
.env.example
File metadata and controls
22 lines (18 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# PostgreSQL Configuration
# For local development with Docker Compose, these are used automatically
# For production (Cloud SQL), use DATABASE_URL with Cloud SQL connection string
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=token_meme
# Alternative: Use DATABASE_URL connection string (for production or custom setups)
# DATABASE_URL=postgresql://postgres:postgres@localhost:5432/token_meme
# Solana Configuration
# Solana RPC endpoint (drpc or other provider)
SOLANA_RPC_ENDPOINT=https://lb.drpc.live/solana/YOUR_API_KEY
# Solana network for wallet adapter (use 'devnet' for development or 'mainnet-beta' for production)
NEXT_PUBLIC_SOLANA_NETWORK=devnet
# Admin Configuration
# Wallet address that will have admin access to manage token properties
ADMIN_WALLET_ADDRESS=your_admin_wallet_address_here