# Ticker Docker Configuration
# Copy this file to .env before running docker-compose
APP_NAME=Ticker
APP_ENV=production
APP_KEY=
APP_DEBUG=false
APP_URL=http://localhost:8080
# Port to expose the application (default: 8080)
APP_PORT=8080
# Database Configuration
DB_CONNECTION=mysql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=ticker
DB_USERNAME=ticker
DB_PASSWORD=changeme
DB_ROOT_PASSWORD=rootchangeme
# Session & Cache (file-based for simplicity)
SESSION_DRIVER=file
CACHE_STORE=file
# Logging
LOG_CHANNEL=stack
LOG_LEVEL=error
|