Skip to content

Commit 27093a6

Browse files
committed
fix: run passport:install in start for oauth key
1 parent 3e3a2a7 commit 27093a6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

scripts/00-laravel-deploy.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
#!/usr/bin/env bash
22
echo "Running composer"
33
composer global require hirak/prestissimo
4-
composer install --no-dev --working-dir=/var/www/html
4+
composer update
5+
composer install --no-dev
56

67
echo "Caching config..."
78
php artisan config:cache
89

10+
911
echo "Caching routes..."
1012
php artisan route:cache
1113

1214
echo "Running migrations..."
1315
php artisan migrate --force
16+
17+
echo "Passport install..."
18+
php artisan passport:install

0 commit comments

Comments
 (0)