-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e347bb
commit 857e446
Showing
42 changed files
with
698 additions
and
858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
########################################################### | ||
#################### Laravel Configuration ################ | ||
########################################################### | ||
|
||
APP_NAME=Laravel | ||
APP_ENV=local | ||
APP_KEY= | ||
APP_DEBUG=true | ||
APP_TIMEZONE=UTC | ||
APP_URL=http://localhost | ||
|
||
# API Settings | ||
API_SUBTYPE=Laravel | ||
API_DOMAIN=localhost | ||
API_DEBUG=true | ||
JWT_SECRET= | ||
JWT_TTL=1440 | ||
APP_LOCALE=en | ||
APP_FALLBACK_LOCALE=en | ||
APP_FAKER_LOCALE=en_US | ||
|
||
APP_MAINTENANCE_DRIVER=file | ||
# APP_MAINTENANCE_STORE=database | ||
|
||
PHP_CLI_SERVER_WORKERS=4 | ||
|
||
BCRYPT_ROUNDS=12 | ||
|
||
LOG_CHANNEL=stack | ||
LOG_STACK=single | ||
LOG_DEPRECATIONS_CHANNEL=null | ||
LOG_LEVEL=debug | ||
|
||
DB_CONNECTION=pgsql | ||
|
@@ -26,38 +29,44 @@ DB_DATABASE_TEST=${DB_DATABASE}_test | |
DB_USERNAME=laradock | ||
DB_PASSWORD=secret | ||
|
||
BROADCAST_DRIVER=log | ||
CACHE_DRIVER=file | ||
QUEUE_CONNECTION=redis | ||
SESSION_DRIVER=database | ||
SESSION_LIFETIME=120 | ||
SESSION_ENCRYPT=false | ||
SESSION_PATH=/ | ||
SESSION_DOMAIN=null | ||
|
||
BROADCAST_CONNECTION=log | ||
FILESYSTEM_DISK=local | ||
QUEUE_CONNECTION=database | ||
|
||
CACHE_STORE=database | ||
CACHE_PREFIX= | ||
|
||
MEMCACHED_HOST=127.0.0.1 | ||
|
||
REDIS_CLIENT=phpredis | ||
REDIS_HOST=your_project_redis | ||
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
|
||
MAIL_MAILER=log | ||
MAIL_HOST=smtp.mailtrap.io | ||
MAIL_SCHEME=null | ||
MAIL_HOST=127.0.0.1 | ||
MAIL_PORT=2525 | ||
MAIL_USERNAME=null | ||
MAIL_PASSWORD=null | ||
MAIL_ENCRYPTION=null | ||
MAIL_FROM_ADDRESS=null | ||
MAIL_FROM_ADDRESS="[email protected]" | ||
MAIL_FROM_NAME="${APP_NAME}" | ||
|
||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_DEFAULT_REGION=us-east-1 | ||
AWS_BUCKET= | ||
AWS_USE_PATH_STYLE_ENDPOINT=false | ||
|
||
PUSHER_APP_ID= | ||
PUSHER_APP_KEY= | ||
PUSHER_APP_SECRET= | ||
PUSHER_APP_CLUSTER=mt1 | ||
|
||
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" | ||
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" | ||
|
||
VITE_APP_NAME="${APP_NAME}" | ||
|
||
########################################################### | ||
########################################################## | ||
################ Third Party Integrations ################# | ||
########################################################### | ||
|
||
|
@@ -67,24 +76,15 @@ MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" | |
###################### Docker Setup ####################### | ||
########################################################### | ||
# To extend the composer process | ||
COMPOSER_PROCESS_TIMEOUT=300 | ||
|
||
# A fix for Windows users, to ensure the application path works | ||
COMPOSE_CONVERT_WINDOWS_PATHS=0 | ||
COMPOSER_PROCESS_TIMEOUT=-1 | ||
|
||
# Choose storage path on your machine. For all storage systems | ||
DATA_PATH_HOST=./storage/laradock/ | ||
|
||
### PHP ########################################### | ||
|
||
# Select a PHP version of the Workspace and PHP-FPM containers (Does not apply to HHVM). | ||
PHP_VERSION=7.4 | ||
|
||
# Enable Xdebug | ||
PHP_XDEBUG_ENABLE=false | ||
PHP_XDEBUG_REMOTE_CONNECT_BACK=false | ||
# use this value when PHP_VERSION is above 7.2, ie. 7.3 | ||
PHP_XDEBUG_VERSION=-2.7.0 | ||
PHP_VERSION=8.4 | ||
|
||
### NGINX ################################################# | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
* text=auto | ||
*.css linguist-vendored | ||
*.scss linguist-vendored | ||
*.js linguist-vendored | ||
* text=auto eol=lf | ||
|
||
*.blade.php diff=html | ||
*.css diff=css | ||
*.html diff=html | ||
*.md diff=markdown | ||
*.php diff=php | ||
|
||
/.github export-ignore | ||
CHANGELOG.md export-ignore | ||
.styleci.yml export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.