Add a README.md file in the repository with a short description of the purpose and tech stack, and "Getting started" instructions.
+18
Diff
round #0
+18
README.md
+18
README.md
···
1
+
# cai
2
+
3
+
AI chat app with a Hono API, SQLite via Drizzle, and a React web client.
4
+
5
+
## Getting started
6
+
7
+
```sh
8
+
cp apps/api/.env.example apps/api/.env
9
+
cp apps/web/.env.example apps/web/.env
10
+
bun install
11
+
bun run --cwd apps/api db:push
12
+
bun run dev
13
+
```
14
+
15
+
Web: `http://localhost:3000`
16
+
API: `http://localhost:3001/api`
17
+
18
+
You will need to set `OPENAI_API_KEY`, Clerk keys, and Upstash Redis values in `apps/api/.env`.