Customization of your instance
This guide is very much a work in progress and will be extended over time.
Adding fonts
Fonts may be added to the lab book. This can be done by adding the font files to the assets/fonts
folder and than registering the font in the database. After restarting the font should be available in the editor. This is done to ensure that the font is available and consistent across all clients.
You can register the font by running the following SQL command:
USE snip_perms;
INSERT INTO fonts (name, fpath) VALUES ('Font Name', 'font.ttf');
Keep in mind that some fonts may be protected by copyright and may not be used in a public instance without permission.