2.4
Improvements
- Full-text search powered by Meilisearch
- New inventory UI
- Organisations can have multiple locations
- Bookmarks set the page and window title
- Entity assets is now a module that can be disabled
Full details available on our blog
Update process
Back up your database before running the update.
After pulling the 2.4 tag, run the following commands from the project's root folder.
sail down
sail up (this is to download the meilisearch docker image)
sail composer install
sail artisan migrate
sail artisan db:seed
sail artisan organisation:locations
sail artisan cache:clear
Enabling full-text search
Edit your .env
and add
SCOUT_DRIVER=meilisearch
MEILISEARCH_HOST=http://meilisearch:7700
MEILISEARCH_KEY=password
Then run the following to import the whole database into meilisearch
sail artisan setup:meilisearch