Skip to content

Commit

Permalink
removing unneccessary php artisan migrate in second run and updating …
Browse files Browse the repository at this point in the history
…dev mode to be false by default
  • Loading branch information
tnylea committed May 24, 2024
1 parent 05b33e8 commit ffc1894
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,6 @@ jobs:
run: php artisan migrate
working-directory: ./laravel_app

- name: Run the Auth Migrations
run: php artisan migrate --path=vendor/devdojo/auth/database/migrations
working-directory: ./laravel_app

# Testing on a mac, this command should be:
# sed -i '' '/"phpunit\/phpunit"/d' composer.json
- name: Remove PHPUnit from composer.json
Expand Down
2 changes: 1 addition & 1 deletion config/devdojo/auth/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
'registration_include_name_field' => false,
'registration_require_email_verification' => false,
'enable_branding' => true,
'dev_mode' => true,
'dev_mode' => false,
'enable_2fa' => false, // Enable or disable 2FA functionality globally
];

0 comments on commit ffc1894

Please sign in to comment.