Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhangyuan/kong-ui
A basic Kong Admin UI - currently it only reads some of the Admin APIs
https://github.com/zhangyuan/kong-ui
Last synced: 21 days ago
JSON representation
A basic Kong Admin UI - currently it only reads some of the Admin APIs
- Host: GitHub
- URL: https://github.com/zhangyuan/kong-ui
- Owner: zhangyuan
- Created: 2023-09-13T08:38:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-28T08:19:37.000Z (over 1 year ago)
- Last Synced: 2024-10-27T14:56:59.727Z (2 months ago)
- Language: Vue
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kong-ui
A simple UI to access Kong Admin API.
## Usage
### Run with the prebuilt binary
Download the binary for your platform and make it executable, run the following command to launch the server:
```bash
./kong-ui_amd64-darwin -t http://your_kong_admin_endpoint
```Open http://localhost:7080 to explore the UI and Kong APIs. The default listening port is `7080`, while it can be changed with the option `-l`, e.g `-l :9909`.
### Run from source code
nodejs and golang are required to build the project.
```bash
npm install
npm build
go run main.go -t http://your_kong_admin_endpoint -l :9909
```## Development
1. Prepare the local Kong instance for the first run:
```
docker compose up db -d
docker compose run --rm kong kong migrations bootstrap
```2. Start the Kong instance
```
docker compose up
```