https://github.com/shubhamv108/kong-demo
Sample application demonstrating Kong plugiuns in Lua.
https://github.com/shubhamv108/kong-demo
docker kong kong-api-gateway kong-plugin lua nginx
Last synced: 5 months ago
JSON representation
Sample application demonstrating Kong plugiuns in Lua.
- Host: GitHub
- URL: https://github.com/shubhamv108/kong-demo
- Owner: shubhamv108
- Created: 2025-04-27T13:58:47.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-05-05T18:02:22.000Z (5 months ago)
- Last Synced: 2025-05-05T19:24:40.106Z (5 months ago)
- Topics: docker, kong, kong-api-gateway, kong-plugin, lua, nginx
- Language: Lua
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Setup
```shell
make up
```### Teardown
```shell
make down
```### Testing
#### Pongo
```shell
curl -Ls https://get.konghq.com/pongo | bash
```#### Start Dependencies for testing - Postgres
```shell
pongo up
```#### Kong gateway Container
```shell
pongo shell
```#### DBMigration
````shell
kms
````#### PluginAvailable
```shell
curl -s localhost:8001 | \
jq '.plugins.available_on_server."header-logger"'
```##### exit pongo shell
````shell
exit
````##### run test
````shell
pongo run
````