Files
termanager2/.env.example

38 lines
657 B
Plaintext

APP_NAME=TerManager2
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_TIMEZONE=Europe/Rome
APP_URL=http://localhost:8080
APP_PORT=8080
SEED_DEV_DATA=false
RUN_DB_SEED_ON_FIRST_START=true
DB_CONNECTION=mysql
DB_HOST=mariadb
DB_PORT=3306
DB_DATABASE=termanager2
DB_USERNAME=termanager2
DB_PASSWORD=secret
DB_ROOT_PASSWORD=rootsecret
REDIS_HOST=redis
REDIS_PASSWORD=redissecret
REDIS_PORT=6379
CACHE_STORE=redis
SESSION_DRIVER=redis
QUEUE_CONNECTION=redis
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="noreply@termanager2.local"
MAIL_FROM_NAME="${APP_NAME}"
MAILPIT_UI_PORT=8025