41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
PORT=8000
|
|
NODE_ENV=development
|
|
SESSION_SECRET=your_session_secret
|
|
|
|
# RPC URLs
|
|
RPC_URL_ETH=https://your-ethereum-rpc-url
|
|
RPC_URL_POLYGON=https://your-polygon-rpc-url
|
|
RPC_URL_BSC=https://your-bsc-rpc-url
|
|
RPC_URL_ARBITRUM=https://your-arbitrum-rpc-url
|
|
RPC_URL=https://your-default-rpc-url
|
|
ETHEREUM_NETWORK_URL=https://your-ethereum-network-url
|
|
PRIVATE_KEY=your_private_key_here
|
|
ETHERSCAN_API_KEY=your_etherscan_api_key
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://dapp_user:dapp_password@postgres:5432/dapp_db
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_NAME=dapp_db
|
|
DB_USER=dapp_user
|
|
DB_PASSWORD=dapp_password
|
|
|
|
# Email Configuration
|
|
EMAIL_USER=your_email@example.com
|
|
EMAIL_PASSWORD=your_email_password
|
|
EMAIL_SMTP_HOST=smtp.example.com
|
|
EMAIL_SMTP_PORT=465
|
|
EMAIL_IMAP_HOST=imap.example.com
|
|
EMAIL_IMAP_PORT=993
|
|
|
|
# Ollama AI Configuration
|
|
OLLAMA_BASE_URL=http://ollama:11434
|
|
OLLAMA_EMBEDDINGS_MODEL=qwen2.5:7b
|
|
OLLAMA_MODEL=qwen2.5:7b
|
|
|
|
# Telegram Bot
|
|
TELEGRAM_BOT_TOKEN=your_telegram_bot_token
|
|
TELEGRAM_BOT_USERNAME=your_bot_username
|
|
|
|
# Frontend URL
|
|
FRONTEND_URL=http://localhost:5173 |