mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
26 lines
687 B
Markdown
26 lines
687 B
Markdown
This demo shows how you can use a publicly hosted rest api and interact it using arch gateway.
|
|
|
|
# How to run this demo.
|
|
|
|
Before staring make sure you have completed the pre-requisites [here](https://github.com/katanemo/archgw?tab=readme-ov-file#prerequisites)
|
|
|
|
In separate window start 1) model server, 2) arch gateway 3) docker container for UI and for debugging 4) tail access logs
|
|
|
|
1. start model server
|
|
```
|
|
archgw up --service model_server --foreground
|
|
```
|
|
|
|
1. start arch gateway
|
|
```
|
|
archgw up --service archgw --foreground
|
|
```
|
|
|
|
1. start docker container for ui
|
|
```
|
|
docker compose up
|
|
```
|
|
1. tail access logs
|
|
```
|
|
tail -F ~/archgw_logs/access_*
|
|
```
|