Skip to main content
Version: 2.20.4

Updating the application

1. Download the Latest Release​

Get the biznisbox.zip file from our GitHub Releases.

2. Prepare Your Project Directory​

In your project root, delete all files and folders except:

  • .env
  • storage/

3. Extract the Zip​

Unzip biznisbox.zip into your project root.
You can use any web server that meets the requirements.

4. Migrate the Database​

Run the following command to apply the latest database migrations:

php artisan migrate

5. Seed Essential Data​

Populate your database with world and production data:

php artisan db:seed --class=ProductionSeeder
php artisan db:seed --class=WorldSeeder

6. Clear & Optimize Cache​

php artisan optimize:clear

Make uploaded files accessible via the web:

php artisan storage:link