Made migration controlled by a dot file

This commit is contained in:
Deon George 2019-05-14 20:01:45 +10:00
parent c66b95e414
commit 55e8429e75

8
init
View File

@ -18,8 +18,12 @@ if [ "${role}" = "app" -a -e artisan ]; then
su www-data -s /bin/sh -c "composer install" && ( test -e .composer.refresh && rm -f .composer.refresh )
fi
echo "Running migration..."
(php artisan migrate)
if [ -r .migrate ]; then
echo "Running migration..."
php artisan migrate
rm -f .migrate
fi
echo "Caching configuration..."
(php artisan config:cache && php artisan route:cache && php artisan view:cache)
fi