Skip to content

Commit

Permalink
update workflow files
Browse files Browse the repository at this point in the history
Signed-off-by: Vinzenz Rosenkranz <[email protected]>
  • Loading branch information
v1r0x committed Nov 27, 2024
1 parent 88552ab commit 70526fa
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
24 changes: 22 additions & 2 deletions .env.phpunit
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ APP_ENV=testing
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
APP_URL=http://localhost:8000
APP_FORCE_URL=false
FRONTEND_URL=http://localhost:5173
SESSION_DOMAIN=localhost
SANCTUM_STATEFUL_DOMAINS=localhost:8000,localhost:5173

DB_CONNECTION=testing
DB_HOST=localhost
Expand All @@ -12,7 +16,23 @@ DB_DATABASE=spacialist_tests
DB_USERNAME=root
DB_PASSWORD=rootpassword

BROADCAST_DRIVER=log
BROADCAST_DRIVER=reverb
BROADCAST_CONNECTION=reverb
CACHE_DRIVER=array
SESSION_DRIVER=array
QUEUE_DRIVER=sync

VITE_APP_PATH=
VITE_APP_NAME='Spacialist Testing Instance'

REVERB_APP_ID=123456
REVERB_APP_KEY=so123!x43212342987abc
REVERB_APP_SECRET=app_sec_12345
REVERB_HOST="localhost"
REVERB_PORT=8080
REVERB_SCHEME=http

VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST="${REVERB_HOST}"
VITE_REVERB_PORT="${REVERB_PORT}"
VITE_REVERB_SCHEME="${REVERB_SCHEME}"
3 changes: 1 addition & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ jobs:
run: composer update
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate keys
- name: Generate key
run: |
php artisan key:generate
php artisan jwt:secret
- name: Run migrations
run: |
php artisan migrate
Expand Down

0 comments on commit 70526fa

Please sign in to comment.