rename project folder

This commit is contained in:
Michi 2025-09-08 20:17:41 +02:00
parent 09d1925cc0
commit 3c197d8ebe
9 changed files with 0 additions and 0 deletions

21
api/README.md Normal file
View file

@ -0,0 +1,21 @@
```txt
npm install
npm run dev
```
```txt
npm run deploy
```
[For generating/synchronizing types based on your Worker configuration run](https://developers.cloudflare.com/workers/wrangler/commands/#types):
```txt
npm run cf-typegen
```
Pass the `CloudflareBindings` as generics when instantiation `Hono`:
```ts
// src/index.ts
const app = new Hono<{ Bindings: CloudflareBindings }>()
```