stones/.env.production.template

23 lines
859 B
Plaintext

# Database
DATABASE_URL="postgresql://stones@66.179.188.130:5433/stones?schema=public"
PYTHON_DATABASE_URL="postgresql://stones@66.179.188.130:5433/stones"
# API Keys (replace with your actual API keys)
ETHEREUM_ETHERSCAN_API_KEY="YOUR_ETHERSCAN_API_KEY"
ALCHEMY_API_KEY="YOUR_ALCHEMY_API_KEY"
# Web3 Provider
WEB3_PROVIDER_URL="https://eth-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}"
OPTIMISM_RPC_URL="https://opt-mainnet.g.alchemy.com/v2/YOUR_OPTIMISM_KEY"
# Application
NODE_ENV="production"
PORT=3000
# Next.js
NEXT_PUBLIC_API_URL="http://your-domain.com/api"
OPTIMISM_ETHERSCAN_API_KEY="YOUR_OPTIMISM_ETHERSCAN_KEY"
# IMPORTANT: Add your database password to the DATABASE_URL and PYTHON_DATABASE_URL
# Add it between 'stones:' and '@66.179'
# Example: DATABASE_URL="postgresql://stones:your_password_here@66.179.188.130:5433/stones?schema=public"