You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -166,7 +165,7 @@ Open http://localhost:5173 (the Vite dev UI), add your provider keys on the **Ke
166
165
167
166
> **Reaching the dev UI from another device on your LAN?** Use `npm run dev:lan` — it passes `--host` through to Vite, which then prints a `Network: http://<your-ip>:5173` URL you can open from a phone or another machine. (Plain `npm run dev -- --host` does *not* work here: the root `dev` script is a `concurrently` wrapper, so the flag never reaches Vite.) API calls go through Vite's dev proxy, so no extra server config is needed.
168
167
169
-
For a production build without Docker:
168
+
For a production build:
170
169
171
170
```bash
172
171
npm run build
@@ -177,30 +176,6 @@ node server/dist/index.js # server + dashboard both served on :3001
177
176
178
177
Request analytics are retained for 90 days or 100000 request rows by default, whichever limit prunes first. Set `REQUEST_ANALYTICS_RETENTION_DAYS=0` or `REQUEST_ANALYTICS_MAX_ROWS=0` in `.env` to disable either retention limit.
Open http://localhost:3001. SQLite data is stored in the `api-gateway-data` volume at `/app/server/data`. Keep the same `.env``ENCRYPTION_KEY` and volume when upgrading.
194
-
195
-
> **Reaching it from another machine?** By default the container is published only on `127.0.0.1`. To expose it on your LAN — e.g. a Raspberry Pi at `http://192.168.1.x:3001` — start it with `HOST_BIND=0.0.0.0`:
196
-
>
197
-
> ```bash
198
-
> HOST_BIND=0.0.0.0 docker compose up -d --build
199
-
>```
200
-
>
201
-
> Only do this on a trusted network: the proxy is single-user and guarded only by the unified API key.
202
-
203
-
More Docker operations and examples live in [docker/README.md](./docker/README.md).
204
179
205
180
## Using the API
206
181
@@ -475,7 +450,7 @@ Contributors very welcome! Good first PRs:
475
450
-**Add an endpoint** — images, moderations, audio. The provider base class can grow new methods; adapters declare which they support.
0 commit comments