Full Go backend + Vue 3 frontend, OpenAI-compatible API, multi-provider account pools, billing/admin, Docker one-command deploy with auto HTTPS. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
37 lines
870 B
Markdown
37 lines
870 B
Markdown
# ai-gateway frontend
|
|
|
|
Vue 3 + Vite admin console for the ai-gateway backend. This replaces the old
|
|
single-file `static/admin.html`.
|
|
|
|
## Develop
|
|
|
|
```bash
|
|
npm install
|
|
npm run dev # http://localhost:5173
|
|
```
|
|
|
|
The dev server proxies `/admin`, `/health`, `/generated`, `/v1` to the backend.
|
|
Start the backend separately:
|
|
|
|
```bash
|
|
# from repo root
|
|
python app.py # http://0.0.0.0:6060
|
|
```
|
|
|
|
If the backend runs elsewhere, set `VITE_BACKEND` before `npm run dev`:
|
|
|
|
```bash
|
|
VITE_BACKEND=http://192.168.1.10:6060 npm run dev
|
|
```
|
|
|
|
## Build
|
|
|
|
```bash
|
|
npm run build # outputs static assets to ./dist
|
|
npm run preview # serve the production build locally
|
|
```
|
|
|
|
When hosting `dist/` on a different origin than the API, set `VITE_API_BASE`
|
|
(e.g. `VITE_API_BASE=http://api-host:6060`) at build time, and add that frontend
|
|
origin to the backend's `CORS_ORIGINS` env var.
|