-
Notifications
You must be signed in to change notification settings - Fork 2
Module Installation
Lenny P. edited this page Jul 28, 2025
·
2 revisions
This guide will walk you through how to install Modules to your Base installation
- Base System
- wget
- unzip
cd /var/www/Base && mkdir modules && cd modules
wget <MODULE_URL>
unzip <MODULE_FILE> && rm <MODULE_FILE>
cd /var/www/Base
composer update
npm i && npm run build
php artisan migrate
php artisan module:publish <MODULE_NAME>
# Discover settings
php artisan settings:discover
- Goto Modules Tab
- Click on the Install Module button
- Select a file or enter the download url
- Click on install
- Click on enable
If you get an 500 error do following:
cd /var/www/Base
composer update
php artisan migrate