The Kuzzle Admin Console allows you to manage your Kuzzle instance. Use it to administer your data, subscriptions and Kuzzle configuration.
Kuzzle is an open-source backend solution that comes equipped with out-of-the-box features to enable real-time collaboration, geofencing, security, and other advanced functionality.
Kuzzle provides a secure API which can be accessed through a large selection of protocols such as REST, Websocket or Message Queuing.
The Kuzzle Admin Console is a static front-end client which runs in your web browser and connects to Kuzzle. This means that your Kuzzle installation must be accessible from the computer running the Kuzzle Admin Console. To connect to Kuzzle you will need to provide your Kuzzle installation host (name or IP) and the port (default: 7512).
You can get the latest version of the Kuzzle Admin Console here (or if you're using Kuzzle through SSL, you can use the https version)
To get a working copy of the Admin Console on your computer, you can download it here: https://dl.kuzzle.io/admin-console/kuzzle-admin-console.tar.gz
To build the Kuzzle Admin Console on your computer, follow these instructions:
git clone https://github.com/kuzzleio/kuzzle-admin-console
: Clone this repositorynpm install
: Install dependenciesnpm run build
: Build the Admin Console- Open the file
dist/index.html
in your favorite web browser, you're done!
To run all the tests, just type
npm test
This executes both unit and end-to-end tests. To run only the unit-tests, run
npm run test:unit
To run the end-to-end tests in headless mode, run
npm run test:e2e
To run the end-to-end tests in headful mode, run
npm run serve
npm run e2e-local
Please refer to the CONTRIBUTING file to learn more about how to write code and tests for this project.