26 lines
802 B
Plaintext
26 lines
802 B
Plaintext
# ---------------------------------------------------------------
|
|
# Bowler — environment configuration
|
|
# Copy this file to .env and change every password before running:
|
|
# docker-compose up -d
|
|
# ---------------------------------------------------------------
|
|
|
|
# Application
|
|
APP_NAME=Bowler
|
|
APP_ENV=production
|
|
APP_DEBUG=false
|
|
APP_PORT=8080
|
|
APP_URL=http://localhost:8080
|
|
# Generate with: php artisan key:generate --show (or any random 32 bytes, base64-encoded)
|
|
APP_KEY=base64:CHANGE_ME_GENERATE_A_REAL_KEY
|
|
|
|
# Percona / MySQL database
|
|
DB_DATABASE=bowler
|
|
DB_USERNAME=bowler
|
|
DB_PASSWORD=change-me-db-password
|
|
DB_ROOT_PASSWORD=change-me-root-password
|
|
|
|
# Initial site administrator (seeded on first startup)
|
|
ADMIN_NAME=Administrator
|
|
ADMIN_EMAIL=admin@example.com
|
|
ADMIN_PASSWORD=change-me-admin-password
|