Skip to content

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

Requirements

  • Base System
  • wget
  • unzip

1. Download the Module

cd /var/www/Base && mkdir modules && cd modules
wget <MODULE_URL>
unzip <MODULE_FILE> && rm <MODULE_FILE>

2. Setup the module

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

Installation via Admin Module (Not really stable yet!)

  1. Goto Modules Tab
  2. Click on the Install Module button
  3. Select a file or enter the download url
  4. Click on install
  5. Click on enable

If you get an 500 error do following:

cd /var/www/Base
composer update
php artisan migrate
Clone this wiki locally