Skip to content

Commit

Permalink
refactor(.env): updated .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
yagnikvamja committed Jul 29, 2024
1 parent 8b8cdf3 commit 128f116
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 17 deletions.
9 changes: 7 additions & 2 deletions javascript-version/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US

APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=database
# APP_MAINTENANCE_STORE=database

BCRYPT_ROUNDS=12

Expand All @@ -20,6 +20,11 @@ LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=sqlite
# DB_HOST=127.0.0.1
# DB_PORT=3306
# DB_DATABASE=laravel
# DB_USERNAME=root
# DB_PASSWORD=

SESSION_DRIVER=database
SESSION_LIFETIME=120
Expand Down Expand Up @@ -57,4 +62,4 @@ AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

VITE_APP_NAME="${APP_NAME}"
VITE_API_BASE_URL=
VITE_API_BASE_URL=
35 changes: 20 additions & 15 deletions typescript-version/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,46 @@ APP_NAME=Laravel
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_TIMEZONE=
APP_TIMEZONE=UTC
APP_URL=http://localhost

APP_LOCALE=
APP_FALLBACK_LOCALE=
APP_FAKER_LOCALE=
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US

APP_MAINTENANCE_DRIVER=
APP_MAINTENANCE_STORE=
APP_MAINTENANCE_DRIVER=file
# APP_MAINTENANCE_STORE=database

BCRYPT_ROUNDS=
BCRYPT_ROUNDS=12

LOG_CHANNEL=stack
LOG_STACK=
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=sqlite
# DB_HOST=127.0.0.1
# DB_PORT=3306
# DB_DATABASE=laravel
# DB_USERNAME=root
# DB_PASSWORD=

SESSION_DRIVER=database
SESSION_LIFETIME=120
SESSION_ENCRYPT=
SESSION_PATH=
SESSION_DOMAIN=
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null

BROADCAST_CONNECTION=
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database

CACHE_STORE=
CACHE_STORE=database
CACHE_PREFIX=

MEMCACHED_HOST=127.0.0.1

REDIS_CLIENT=
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
Expand All @@ -57,4 +62,4 @@ AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

VITE_APP_NAME="${APP_NAME}"
VITE_API_BASE_URL=
VITE_API_BASE_URL=

0 comments on commit 128f116

Please sign in to comment.