Skip to content
This repository has been archived by the owner on Aug 19, 2021. It is now read-only.
Daniel Naber edited this page May 6, 2019 · 1 revision

Laravel Update

From Laravel 5.4 to 5.8, this worked to deploy it after the actual migration was done on the code level:

apt-get install php-sqlite3
git config core.sshCommand "ssh -i /root/.ssh/ltplus-github"
git pull

change `.env` to use this database:
 DB_CONNECTION=sqlite
 DB_DATABASE=/home/languagetool/repo/database/db.sqlite

touch database/db.sqlite
composer install
php artisan config:clear
php artisan config:cache
php artisan migrate
Clone this wiki locally