A modular BookStack theme
ModBook is a collection of smaller mods that I have created and put into a format, which can be dynamically loaded. This repository can be cloned into the themes folder, and enabled like any BookStack theme, using the .env file.
By default this theme won't change anything visually, however after first reload of BookStack, a config.php should be generated within the ModBook folder. This file can be used to enable various mods. The target of this project is to generate a JavaScript and CSS file dynamically, to achieve a very customized experience.
Due to the fact that mods can be incompatible with each other; I have decided that this will still be called a modular theme, rather than a mod-loader of some sort.
Feel free to create issues to point out incompatible code or issues with mods. I will still decide which mods make it into this repository, however: Feel free to fork this, and make your own modpack. If you decide to fork and redistribute it, please use another name than ModBook, so cloning into the themes folder won't cause complications.
You may have to use
sudo -u www-data
and replace www-data with your webserver user here.
Prepend this in front of the git, nano and php commands.
First, log-in to your server, then navigate to your BookStack installations theme folder:
cd /var/www/bookstack/themes/
Then run following to clone ModBook into your themes folder:
git clone https://github.com/DiscordDigital/ModBook.git --branch release --single-branch
Edit your .env file:
$ cd ..
$ nano .env
And append following variable to the end of the file, which corresponds to the existence of the ModBook folder:
APP_THEME=ModBook
Reload your page to create the config.php file within the themes/ModBook
folder.
Navigate to your ModBook folder:
cd /var/www/bookstack/themes/ModBook/
Then run following command as your webserver user, to update ModBook:
git pull origin release
Compare your config.php
with defaults.php
and migrate over mods of your interest.
Alternatively delete your config.php
file and reload BookStack to generate a new one.
With mb.php you can show the status of the mods available. You can also clear the cache.
Showing available commands:
php mb.php
View a status of the available mods:
php mb.php lsmod
Clear cache:
php mb.php clear
Remove following from your .env
file:
APP_THEME=ModBook
Run following as your webserver user in the themes/ModBook
directory:
php mb.php clear
This will remove changes made to the public
directory.
Remove the ModBook
folder from themes.
β ModBook should now be uninstalled.
Although I have tested everything posted on here, I can't support repairing any instances breaking in the process.
If you haven't already, please create regular backups of your instance and make sure you have a most recent one before installing ModBook.
Everything you do, is at your own risk.
I currently optimize the mods to work with the weasyprint
export method.
Here's a page that describes how to configure it: https://www.bookstackapp.com/docs/admin/pdf-rendering/.