Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ 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_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: npm ci

- name: Compile assets
run: npm run production
run: npm run build

- name: Execute tests
run: vendor/bin/phpunit --verbose
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/node_modules
/public/build
/public/css
/public/hot
/public/js
/public/storage
/public/mix-manifest.json
/storage/*.key
/vendor
.env
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Command | Description
--- | ---
**`php artisan test`** | Run the tests
`php artisan migrate:fresh --seed` | Reset the database
`npm run watch` | Watch for changes in CSS and JS files
`npm run dev` | Watch for changes in CSS and JS files

## Maintainers

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"php": "8.1.*",
"blade-ui-kit/blade-heroicons": "^1.3",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.7",
"laravel/framework": "^9.19",
"laravel/tinker": "^2.7",
"ramsey/uuid": "^4.3",
"league/flysystem-aws-s3-v3": "^3.0",
"ramsey/uuid": "^4.3",
"spatie/laravel-ignition": "^1.1"
},
"require-dev": {
Expand Down
Loading