Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ APP_URL=http://localhost

VITE_ECHO_ADDRESS=http://localhost:8443

REVERB_APP_ID=my-app-id
REVERB_APP_KEY=my-app-key
REVERB_APP_SECRET=my-app-secret
REVERB_HOST=localhost
REVERB_PORT=8080
REVERB_SCHEME=https

VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST="${REVERB_HOST}"
VITE_REVERB_PORT="${REVERB_PORT}"
VITE_REVERB_SCHEME="${REVERB_SCHEME}"

LOG_CHANNEL=daily

DB_CONNECTION=mysql
Expand All @@ -16,7 +28,7 @@ DB_DATABASE=unit3d
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_CONNECTION=redis
BROADCAST_CONNECTION=reverb
CACHE_STORE=redis
SESSION_DRIVER=redis
SESSION_CONNECTION=session
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phpunit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ jobs:
DB_DATABASE: unit3d
DB_PASSWORD: null
CACHE_STORE: array
BROADCAST_CONNECTION: 'null'

- name: Save PHPUnit cache
uses: actions/cache/save@v4
Expand Down
514 changes: 514 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

Binary file removed bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"laravel/fortify": "^1.33.0",
"laravel/framework": "^12.44.0",
"laravel/octane": "^2.13.3",
"laravel/reverb": "^1.7",
"laravel/scout": "^10.23.0",
"laravel/tinker": "^2.10.2",
"livewire/livewire": "^3.7.3",
Expand Down
Loading
Loading