https://github.com/90pixel/meiliadmin
Open Source MeiliSearch Management Tool
https://github.com/90pixel/meiliadmin
Last synced: over 1 year ago
JSON representation
Open Source MeiliSearch Management Tool
- Host: GitHub
- URL: https://github.com/90pixel/meiliadmin
- Owner: 90pixel
- License: mit
- Created: 2021-09-19T14:33:55.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-21T12:28:38.000Z (about 3 years ago)
- Last Synced: 2025-01-16T23:43:59.129Z (over 1 year ago)
- Language: Vue
- Homepage:
- Size: 189 KB
- Stars: 29
- Watchers: 3
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### MeiliAdmin
MeiliAdmin is a UI interface for managing your MeiliSearch servers easily. MeiliAdmin doesn't have any auth service. You have to manage it in your private network (such as VPN). MeiliAdmin crafted by 90Pixel with ❤️.
What is MeiliSearch?
[Türkçe](./README_TR.md)
[English](./README.md)
MeiliSearch is a powerful, fast, open-source, easy to use and deploy search engine. Both searching and indexing are highly customizable. Features such as typo-tolerance, filters, and synonyms are provided out-of-the-box. For more information about features go to [MeiliSearch documentation](https://docs.meilisearch.com/ "MeiliSearch documentation")
### Features
- Language Support (Currently Turkish and English. If you want to add your language please contribute our open source project.)
- Manage your all MeiliSearch servers.
- Monitoring
- Create Index
- Update Index Settings
- Will be added more in the future.
# Installation
## Docker
```
git clone https://github.com/90pixel/MeiliAdmin
docker-compose up -d
```
Then visit this addres with your browser
```http://localhost```
## Without Docker
```
git clone https://github.com/90pixel/MeiliAdmin
//Auto Deploy with PM2 (Uses vue-cli serve method)
cd ./MeiliAdmin && pm2 start meiliadmin-pm2.json
//Without PM2
cd ./MeiliAdmin
cd ./meilipanel
npm run build
// Copy dist files into your http server. (Nginx, Apache etc.)
cd ../meilisocket
npm run start
```