use fun-asr-nano model instead

This commit is contained in:
2026-06-02 20:24:31 -07:00
parent 3e50191530
commit 40a4274fd3
6 changed files with 38 additions and 11 deletions
+3 -3
View File
@@ -69,8 +69,8 @@ The checked-in `docker-compose.yml` mounts local `./config.toml` there for the A
## Services And Ports
- Frontend: `http://localhost:3000`
- Backend API: `http://localhost:8080`
- API docs: `http://localhost:8080/docs`
- Backend API: `http://localhost:8081`
- API docs: `http://localhost:8081/docs`
- Redis: `localhost:6379` when exposed by Compose
- PostgreSQL: only started by Compose when using the `local-db` profile
@@ -145,7 +145,7 @@ The frontend reads the backend URL from `frontend/public/config.js` at runtime:
```js
window.__EVANESCERE_FRONTEND_CONFIG__ = {
apiBaseUrl: "http://192.168.1.44:8080"
apiBaseUrl: "http://192.168.1.44:8081"
};
```