How to Update BookStack Wiki
Introduction
BookStack wiki gets frequent updates and it's important to keep it up to date. Details about releases can be found here:
- BookStack Github Releases https://github.com/BookStackApp/BookStack/releases
- BookStack Update Documentation https://www.bookstackapp.com/docs/admin/updates/
Step-by-Step Guide
Running the below commands will update BookStack.
cd /var/www/bookstack/
git pull origin release
composer install --no-dev
sudo php artisan migrate
sudo php artisan cache:clear
php artisan config:clear
php artisan view:clear
sudo systemctl restart apache2