# Environment Configuration

# Application
APP_NAME="Test Motor Api"
ENVIRONMENT=development
DEBUG=True

# Logging
LOG_LEVEL=INFO

# Server
HOST=0.0.0.0
PORT=8001

# Database
DATABASE_URL=sqlite:///./test_motor_api.db
DB_ECHO=False
DB_POOL_SIZE=5
DB_MAX_OVERFLOW=10

# Add your environment variables here
# For PostgreSQL:
# DATABASE_URL=postgresql://user:password@localhost:5432/dbname
# For MySQL:
# DATABASE_URL=mysql://user:password@localhost:3306/dbname
# REDIS_URL=redis://localhost:6379/0