- Add new log channel "flare" and update "stack" channel to use it - Introduce placeholders for log messages in several channels - Add processors to "papertrail" and "stderr" channels - Add `spatie/laravel-ignition` package to composer requirements - Change `$dontReport` variable to `$dontFlash` in exception handler - Add `FLARE_KEY` and `BRIDGY_MASTODON_TOKEN` to `.env.github` and `.env.example` files
70 lines
1.2 KiB
Text
70 lines
1.2 KiB
Text
APP_NAME=Laravel
|
|
APP_ENV=testing
|
|
APP_KEY=SomeRandomString # Leave this
|
|
APP_DEBUG=false
|
|
APP_LOG_LEVEL=warning
|
|
|
|
DB_CONNECTION=pgsql
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=5432
|
|
DB_DATABASE=jbukdev_testing
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=postgres
|
|
|
|
BROADCAST_DRIVER=log
|
|
CACHE_DRIVER=file
|
|
SESSION_DRIVER=file
|
|
QUEUE_DRIVER=sync
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PASSWORD=null
|
|
REDIS_PORT=6379
|
|
|
|
MAIL_DRIVER=smtp
|
|
MAIL_HOST=smtp.mailtrap.io
|
|
MAIL_PORT=2525
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|
|
MAIL_ENCRYPTION=null
|
|
|
|
PUSHER_APP_ID=
|
|
PUSHER_APP_KEY=
|
|
PUSHER_APP_SECRET=
|
|
|
|
AWS_S3_KEY=your-key
|
|
AWS_S3_SECRET=your-secret
|
|
AWS_S3_REGION=region
|
|
AWS_S3_BUCKET=your-bucket
|
|
AWS_S3_URL=https://xxxxxxx.s3-region.amazonaws.com
|
|
|
|
APP_URL=https://example.com # This one is necessary
|
|
APP_LONGURL=example.com
|
|
APP_SHORTURL=examp.le
|
|
|
|
ADMIN_USER=admin # pick something better, this is used for `/admin`
|
|
ADMIN_PASS=password
|
|
DISPLAY_NAME="Joe Bloggs" # This is used for example in the header and titles
|
|
|
|
TWITTER_CONSUMER_KEY=
|
|
TWITTER_CONSUMER_SECRET=
|
|
TWITTER_ACCESS_TOKEN=
|
|
TWITTER_ACCESS_TOKEN_SECRET=
|
|
|
|
SCOUT_DRIVER=database
|
|
SCOUT_QUEUE=false
|
|
|
|
PIWIK=false
|
|
|
|
FATHOM_ID=
|
|
|
|
APP_TIMEZONE=UTC
|
|
APP_LANG=en
|
|
APP_LOG=daily
|
|
SECURE_SESSION_COOKIE=true
|
|
|
|
LOG_SLACK_WEBHOOK_URL=
|
|
FLARE_KEY=
|
|
|
|
FONT_LINK=
|
|
|
|
BRIDGY_MASTODON_TOKEN=
|