Skip to main content

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:

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