Skip to content

Commit

Permalink
Basic installation of Laravel 11, Breeze (Livewire and Class-based Vo…
Browse files Browse the repository at this point in the history
…lt), Pint, and Heroicons
  • Loading branch information
troccoli committed Jul 20, 2024
1 parent dfbf868 commit cef380a
Show file tree
Hide file tree
Showing 377 changed files with 8,729 additions and 57,793 deletions.
113 changes: 0 additions & 113 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .env.ci
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_NAME="London Volleyball Association"
APP_NAME="LVA - Livewire (CI)"
APP_ENV=ci
APP_DEBUG=true
APP_KEY=base64:VYABbLef4IXK0LrV6XNRTCDKuJBhG5osr10YDFKTcCg=
Expand Down
2 changes: 1 addition & 1 deletion .env.dusk.local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_NAME="London Volleyball Association"
APP_NAME="LVA - Livewire (Dusk)"
APP_ENV=testing
APP_KEY=base64:coU7gleLTqakisz6nGFVnXyrWjNxYr/5HE2zYsn/GPU=
APP_DEBUG=true
Expand Down
80 changes: 49 additions & 31 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,46 +1,64 @@
APP_NAME="London Volleyball Association"
APP_NAME=Laravel
APP_ENV=local
APP_DEBUG=true
APP_DEBUG_LEVEL=debug
APP_KEY=
APP_URL=http://localhost:8081
APP_DEBUG=true
APP_TIMEZONE=UTC
APP_URL=http://localhost

APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US

APP_MAINTENANCE_DRIVER=file
# APP_MAINTENANCE_STORE=database

DB_HOST=lva-mysql
DB_PORT=3306
DB_DATABASE=lva
DB_USERNAME=root
DB_PASSWORD=123
BCRYPT_ROUNDS=12

CACHE_DRIVER=file
SESSION_DRIVER=file
LOG_CHANNEL=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
QUEUE_DRIVER=sync
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null

BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database

MAIL_MAILER=smtp
MAIL_HOST=lva-mailhog
MAIL_PORT=1025
CACHE_STORE=database
CACHE_PREFIX=

MEMCACHED_HOST=127.0.0.1

REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=log
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=false
MAIL_FROM_ADDRESS=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"

FAKER_LOCALE=en_GB

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}"

SWEET_ALERT_CONFIRM_BUTTON=false
SWEET_ALERT_MIDDLEWARE_TOAST_CLOSE_BUTTON=false
SWEET_ALERT_TIMER=3000
SWEET_ALERT_MIDDLEWARE_TOAST_POSITION=top
VITE_APP_NAME="${APP_NAME}"
Loading

0 comments on commit cef380a

Please sign in to comment.