28 lines
687 B
Plaintext
28 lines
687 B
Plaintext
# BTC Bot Environment Configuration
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Database Configuration
|
|
DB_HOST=timescaledb
|
|
DB_PORT=5432
|
|
DB_NAME=btc_data
|
|
DB_USER=btc_bot
|
|
DB_PASSWORD=change_this_to_secure_password
|
|
|
|
# Hyperliquid Configuration
|
|
HYPERLIQUID_API_KEY=optional_for_trading
|
|
HYPERLIQUID_API_SECRET=optional_for_trading
|
|
|
|
# Base RPC (for validation)
|
|
BASE_RPC_URL=https://base-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_API_KEY
|
|
|
|
# Coinbase API (for validation)
|
|
COINBASE_API_KEY=optional
|
|
|
|
# Telegram Notifications (optional)
|
|
TELEGRAM_BOT_TOKEN=your_bot_token_here
|
|
TELEGRAM_CHAT_ID=your_chat_id_here
|
|
|
|
# API Server
|
|
API_HOST=0.0.0.0
|
|
API_PORT=8000
|
|
API_SECRET_KEY=change_this_secret_key |