diff --git a/.env.example b/.env.example index ecae1f4f..1b50b49f 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -# Get the full description at storage/docker/README.md +# Get the full description at https://github.com/ammannbe/RecipeManager/blob/master/storage/docker/README.md APP_NAME=RecipeManager APP_ENV=local @@ -6,7 +6,7 @@ APP_KEY= APP_DEBUG=true APP_URL=http://localhost:8000 -APP_VERSION=7 +APP_VERSION=7.0 MARIADB_VERSION=10.5.8 REDIS_VERSION=6.0-alpine MEILISEARCH_VERSION=v0.18.1 @@ -71,5 +71,6 @@ MIX_DISABLE_COOKBOOKS=$DISABLE_COOKBOOKS MIX_DISABLE_TAGS=$DISABLE_TAGS MIX_DISABLE_RATINGS=$DISABLE_RATINGS MIX_PREFER_PAGINATION=$PREFER_PAGINATION +MIX_ICON=/img/icon.png MIX_PLACEHOLDER_IMAGE=/img/placeholder.png MIX_NOT_FOUND_IMAGE=/img/not-found.jpg diff --git a/README.md b/README.md index bd0eaed6..cb672613 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ Alternatively or for development purposes you can make a manual installation on - Generate storage symlink `php artisan storage:link` - Generate an app key `php artisan key:generate` - Migrate the database `php artisan migrate` +- Import meilisearch indexes `php artisan scout:index recipes && php artisan scout:import "App\Models\Recipes\Recipe"` - Add following to your crontab: ```bash @@ -96,6 +97,7 @@ php artisan view:cache - Optimize composer autoload `composer install` - Install NPM packages `npm install` - Migrate the database `php artisan migrate` +- Import meilisearch indexes `php artisan scout:index recipes && php artisan scout:import "App\Models\Recipes\Recipe"` - Follow [Development deployment](#development-deployment) or [Production deployment](#production-deployment) ## Translations diff --git a/public/favicon.ico b/public/favicon.ico index e69de29b..ff716e98 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/resources/js/components/Mixins/TheMenuBar.vue b/resources/js/components/Mixins/TheMenuBar.vue index 3060c58f..83bd83a9 100644 --- a/resources/js/components/Mixins/TheMenuBar.vue +++ b/resources/js/components/Mixins/TheMenuBar.vue @@ -8,6 +8,7 @@