20 lines
334 B
Plaintext
20 lines
334 B
Plaintext
# Exchange API Keys (ejemplo con Binance)
|
|
EXCHANGE_NAME=binance
|
|
API_KEY=your_api_key_here
|
|
API_SECRET=your_api_secret_here
|
|
|
|
# Database
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=trading_bot
|
|
DB_USER=postgres
|
|
DB_PASSWORD=your_password
|
|
|
|
# Redis
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_DB=0
|
|
|
|
# General
|
|
ENVIRONMENT=development
|
|
LOG_LEVEL=INFO |