Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kuzzleio/kuzzle-admin-console
A SPA to administrate your Kuzzle: index and collection management, document creation, realtime subscription and permissions management
https://github.com/kuzzleio/kuzzle-admin-console
hacktoberfest kuzzle kuzzle-admin-console single-page-applications vuejs
Last synced: 1 day ago
JSON representation
A SPA to administrate your Kuzzle: index and collection management, document creation, realtime subscription and permissions management
- Host: GitHub
- URL: https://github.com/kuzzleio/kuzzle-admin-console
- Owner: kuzzleio
- License: apache-2.0
- Created: 2016-06-28T13:37:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-17T08:36:07.000Z (14 days ago)
- Last Synced: 2025-01-22T17:08:06.145Z (9 days ago)
- Topics: hacktoberfest, kuzzle, kuzzle-admin-console, single-page-applications, vuejs
- Language: Vue
- Homepage: http://console.kuzzle.io
- Size: 25.2 MB
- Stars: 62
- Watchers: 11
- Forks: 26
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - kuzzleio/kuzzle-admin-console - A SPA to administrate your Kuzzle: index and collection management, document creation, realtime subscription and permissions management (vuejs)
README
# Kuzzle Admin Console
> The Kuzzle Admin Console allows you to manage your Kuzzle instances. It allows you to manage your data, subscriptions and security (users, profiles and roles).
## About Kuzzle
Kuzzle is an open-source backend solution shipping out-of-the-box features like real-time subscriptions, geofencing, security, and advanced search.
Kuzzle provides a secure API which can be accessed through a wide range of protocols such as REST, Websocket or Message Queuing.
## About the Admin Console
The Kuzzle Admin Console is a web application that connects to your Kuzzle instances. This means that your Kuzzle stack must be accessible from the computer running the Kuzzle Admin Console. To connect to Kuzzle you will need to provide your Kuzzle host (name or IP) and the port (default: 7512).
## Hosted Console
We host a running Admin Console [here](http://console.kuzzle.io) (or if you're using Kuzzle through SSL, you can use the [https](https://console.kuzzle.io) version), but you can also build your own local copy (see below).
## Docker image
An official Docker image is available on Dockerhub, to use it locally run:
```sh
docker run -it -p 8080:80 kuzzleio/admin-console
```This will expose the Admin Console on [http://localhost:8080](http://localhost:8080), you're free to adapt the exposed port to your needs.
## Local build
To build the Kuzzle Admin Console on your computer, follow these instructions:
- `git clone https://github.com/kuzzleio/kuzzle-admin-console` (clone this repository)
- `npm install` (install dependencies)
- `npm run build` : (build the Admin Console)
- Serve the `dist` directory via your favorite HTTP server (e.g. `http-server dist`)
- Access the served files in your favorite browser