From 6ffb7ca96d0c56314536e4ae42a52dda47741fed Mon Sep 17 00:00:00 2001 From: BillyOutlast <172061051+BillyOutlast@users.noreply.github.com> Date: Sat, 30 Aug 2025 21:27:23 -0400 Subject: [PATCH] Revert "TODO meilisearch" This reverts commit 12dc7c15084284fc39450b3b5eed54c6bd820b56. --- Readme.md | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/Readme.md b/Readme.md index 3e0277a..b6d6065 100644 --- a/Readme.md +++ b/Readme.md @@ -190,45 +190,3 @@ php artisan config:clear ``` This command reloads the configuration from your `.env` file and can resolve issues related to environment variables. - - -## 20. Set Up Meilisearch for UNIT3D Search - -UNIT3D uses Meilisearch for fast and relevant search functionality. To set up Meilisearch: - -### 1. Start Meilisearch Container - -If Meilisearch is included in your `podman-compose.yml`, it will start automatically. Otherwise, you can run: - -```sh -podman run -d --name meilisearch -p 7700:7700 getmeili/meilisearch -``` - -### 2. Configure Meilisearch in `.env` - -Ensure your `.env` file contains: - -```env -MEILISEARCH_HOST=http://meilisearch:7700 -``` - -### 3. Import Search Indexes - -After the application is running, import the search indexes: - -```sh -podman exec -it unit3d-podman_unit3d_1 bash -php artisan meilisearch:import -``` - -This command will populate Meilisearch with the necessary data for UNIT3D's search features. - -### 4. Rebuild Indexes (Optional) - -If you need to rebuild the indexes (for example, after major updates): - -```sh -php artisan meilisearch:rebuild -``` - -Your UNIT3D instance should now have search functionality enabled and working via Meilisearch. \ No newline at end of file