Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpolaszek/meiliweb
A user interface for your Meilisearch instances.
https://github.com/bpolaszek/meiliweb
facets full-text-search meilisearch search
Last synced: about 1 month ago
JSON representation
A user interface for your Meilisearch instances.
- Host: GitHub
- URL: https://github.com/bpolaszek/meiliweb
- Owner: bpolaszek
- License: other
- Created: 2024-04-10T12:59:40.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T09:56:41.000Z (about 2 months ago)
- Last Synced: 2024-09-12T21:05:48.383Z (about 2 months ago)
- Topics: facets, full-text-search, meilisearch, search
- Language: Vue
- Homepage: https://meiliweb.pages.dev
- Size: 437 KB
- Stars: 27
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome-meilisearch - Meiliweb - Yet another dashboard / UI for Meilisearch (Tools / Community Tools)
README
# Meiliweb
[Meiliweb](https://meiliweb.pages.dev) is a web-based administration panel
that helps you store, organize and visualize data in your [Meilisearch](https://meilisearch.com) instances.https://github.com/bpolaszek/meiliweb/assets/5569077/b4100e75-1e70-45dd-8c38-926a3dafafe1
## Features
- 🛢️ Indexes management: create indexes, update settings
- 🔍 Documents management: import documents, search, sort, filter
- 🗝️ Access keys management: Create keys, generate tenant tokens (JWTs)
- 📋 Tasks management
- 🅿️ Dumps / snapshots management## Demo
You can run Meilweb on your search instances, provided they expose appropriate CORS headers, on [https://meiliweb.pages.dev](https://meiliweb.pages.dev).
## Local usage
Meiliweb is a [Nuxt 3](https://nuxt.com/) single-page application that entirely runs on the client side.
If you have some basics with [Vue](https://vuejs.org/) and [TailwindCSS](https://tailwindcss.com/), you will easily
figure out how this application has been structured.[Yarn](https://yarnpkg.com/) is required to install packages.
Feel free to contribute!
- [Discussions](https://github.com/bpolaszek/meiliweb/discussions): Ask questions, share ideas, suggest features
- [Issues](https://github.com/bpolaszek/meiliweb/issues): Report bugs
- [Pull requests](https://github.com/bpolaszek/meiliweb/pulls): Request changes### Installation
```bash
git clone https://github.com/bpolaszek/meiliweb.git
cd meiliweb
yarn install
```### Launch dev server
```bash
yarn dev
```### Build & preview
```bash
yarn build && yarn preview
```### Code style
#### Check
```bash
yarn lint
```#### Fix
```bash
yarn format
```