6d6e8bcaf9
DB_DRIVER is default set to sqlite. Anyone starting the project intending to use MySQL will have to look around to see to add that declaration here. Best add it to the example file to save them the hassle.
20 lines
294 B
Bash
20 lines
294 B
Bash
APP_ENV=local
|
|
APP_DEBUG=true
|
|
APP_KEY=SomeRandomString
|
|
|
|
DB_DRIVER=sqlite
|
|
DB_HOST=localhost
|
|
DB_DATABASE=cachet
|
|
DB_USERNAME=user
|
|
DB_PASSWORD=secret
|
|
|
|
CACHE_DRIVER=apc
|
|
SESSION_DRIVER=file
|
|
QUEUE_DRIVER=sync
|
|
|
|
MAIL_DRIVER=smtp
|
|
MAIL_HOST=mailtrap.io
|
|
MAIL_PORT=2525
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|