The source code for blade-ui-kit.com
The following tools are required in order to start the installation.
- Clone this repository locally with git clone [email protected]:blade-ui-kit/blade-ui-kit.com.git blade-ui-kit.com
- Copy the .env.examplefile to.env
- Install the PHP dependencies with composer install
- Generate a new app key with php artisan key:generate
- Install and compile the front-end dependencies with npm install && npm run dev
- Import all icon sets using php artisan icons:import
- Set up Meilisearch (optionally)
- Serve the website locally by running php artisan serve
You can now visit the app in your browser by visiting http://127.0.0.1:8000.
To get up and running with Meilisearch for the website locally, first make sure you download and launch Meilisearch.
After that, create an icons index using:
php artisan scout:index iconsAfter creating the index, you'll need to configure a filterable attribute for the icon sets:
curl \
  -X PUT 'http://localhost:7700/indexes/icons/settings/filterable-attributes' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer masterKey' \
  --data-binary '[
    "icon_set_id"
  ]'Then, import all icons into the search using:
php artisan scout:import "App\\Models\\Icon"Now all icons from all icon sets are indexed and searchable at http://127.0.0.1:8000/blade-icons.
You can clear all icons again by running:
php artisan scout:flush "App\\Models\\Icon"| Command | Description | 
|---|---|
| php artisan test | Run the tests | 
| php artisan migrate:fresh --seed | Reset the database | 
| php artisan icons:import | Import all icon sets into Sqlite | 
| npm run dev | Watch for changes in CSS and JS files |