docs: update repo README with all 4 demo apps
This commit is contained in:
parent
1db7c553d1
commit
dd0d7c325b
1 changed files with 24 additions and 8 deletions
32
README.md
32
README.md
|
|
@ -1,24 +1,40 @@
|
||||||
# GITEX 2026 — Booth Applications
|
# GITEX KENYA 2026 — Booth Applications
|
||||||
|
|
||||||
This repository contains the applications developed for the **Sechpoint Aftica** booth at **GITEX 2026**.
|
This repository contains the applications developed for the **Sechpoint Aftica** booth at **GITEX KENYA 2026**.
|
||||||
|
|
||||||
## Applications
|
## Applications
|
||||||
|
|
||||||
| App | Directory | Description |
|
| App | Directory | Description |
|
||||||
|-----|-----------|-------------|
|
|-----|-----------|-------------|
|
||||||
| **AASD** | [`aasd/`](aasd/) | API Attack Surface Discovery — interactive booth demo |
|
| **AASD** | [`aasd/`](aasd/) | API Attack Surface Discovery — interactive booth demo |
|
||||||
|
| **Kron Password Challenge** | [`kron/`](kron/) | Interactive password strength tester |
|
||||||
|
| **Ping Identity** | [`ping/`](ping/) | Identity and access management demo |
|
||||||
|
| **SD-WAN Traffic Master** | [`sdwan/`](sdwan/) | SD-WAN traffic simulation and monitoring |
|
||||||
|
|
||||||
|
All apps are served by a unified demo server (`gitex.service`) and accessible from the hub landing page.
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
Each application has its own `README.md` with build and deploy instructions.
|
The demo server runs as a systemd service on the booth machine:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# AASD
|
# Check status
|
||||||
cd aasd/
|
systemctl status gitex.service
|
||||||
# Build: cd src && go build -o /opt/aasd/aasd ./cmd/aasd/
|
|
||||||
# Deploy: sudo systemctl restart aasd
|
# View hub landing page
|
||||||
|
open http://localhost:8000
|
||||||
|
|
||||||
|
# Deploy updated static files (after building)
|
||||||
|
cp -r aasd/src/static/* /opt/gitex/static/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Per-app notes
|
||||||
|
|
||||||
|
- **AASD** — Go application. Build: `cd aasd/src && go build -o /opt/gitex/gitex ./cmd/aasd/`
|
||||||
|
- **Kron** — Pre-built static PWA (Vite + Workbox)
|
||||||
|
- **Ping** — Pre-built static site
|
||||||
|
- **SD-WAN** — Pre-built static site
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Proprietary — For internal event use at GITEX 2026.
|
Proprietary — For internal event use at GITEX KENYA 2026.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue