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: 9 months 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-11T06:01:46.000Z (10 months ago)
- Last Synced: 2025-06-11T07:20:29.767Z (10 months ago)
- Topics: facets, full-text-search, meilisearch, search
- Language: Vue
- Homepage: https://meiliweb.pages.dev
- Size: 410 KB
- Stars: 46
- Watchers: 5
- Forks: 7
- 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
```
### Docker build
```bash
docker build -t meiliweb .
```
### Docker run
```bash
docker run -p 3000:3000 -d meiliweb
```
### Code style
#### Check
```bash
yarn lint
```
#### Fix
```bash
yarn format
```