mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 14:41:28 -07:00
27 lines
327 B
Markdown
27 lines
327 B
Markdown
# chat
|
|
|
|
Chat worker served on the `chat` subdomain.
|
|
|
|
- `GET /` — service status `{ "service": "chat", "status": "ok" }`.
|
|
- `GET /thread` — chat threads. No DB binding yet, so returns `[]`.
|
|
|
|
## Development
|
|
|
|
### Run in dev mode
|
|
|
|
```sh
|
|
pnpm dev
|
|
```
|
|
|
|
### Run tests
|
|
|
|
```sh
|
|
pnpm test
|
|
```
|
|
|
|
### Deploy
|
|
|
|
```sh
|
|
pnpm turbo deploy
|
|
```
|