Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Commit

Permalink
Tweaked some options and example env
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddanbrown committed May 15, 2024
1 parent 8e5f5e9 commit d8c1ceb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
13 changes: 1 addition & 12 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@ APP_COMPANY_NAME="Example Company Limited"
# Set this to be the URL you'll be hosting the app on
APP_URL=http://localhost

APP_TIMEZONE=UTC
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=database
BCRYPT_ROUNDS=12

# Set this to be the URL you want to redirect to when
# someone accesses the root/homepage of the app
HOME_REDIRECT_URL=https://example.com
Expand Down Expand Up @@ -50,13 +42,10 @@ DB_CONNECTION=sqlite

# Queue, Cache and Session Details
# Should not need to change these
CACHE_STORE=file
CACHE_DRIVER=file
QUEUE_CONNECTION=database
SESSION_DRIVER=file
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null

# Do not change these unless you know what you're doing
APP_ENV=production
Expand Down
2 changes: 1 addition & 1 deletion config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
|
*/

'default' => env('CACHE_STORE', 'file'),
'default' => env('CACHE_DRIVER', 'file'),

/*
|--------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
|
*/

'path' => env('SESSION_PATH', '/'),
'path' => '/',

/*
|--------------------------------------------------------------------------
Expand All @@ -156,7 +156,7 @@
|
*/

'domain' => env('SESSION_DOMAIN'),
'domain' => null,

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<env name="HCAPTCHA_SITEKEY" value=""/>
<env name="HCAPTCHA_SECRETKEY" value=""/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_STORE" value="array"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="MAIL_MAILER" value="array"/>
Expand Down

0 comments on commit d8c1ceb

Please sign in to comment.