Skip to main content
Version: Next

Updating the application

1. Download the Latest Release

Get the production.zip file from our GitHub Releases.

2. Prepare Your Project Directory

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

  • .env
  • storage/
  • install.lock (if it exists)

3. Extract the Zip

Unzip production.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