feat(api): add api base

This commit is contained in:
Lars Hampe 2024-09-28 20:10:17 +02:00
parent a9fbf96b62
commit f44b5d74ca
5 changed files with 41 additions and 0 deletions

2
apps/api/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# deps
node_modules/

11
apps/api/README.md Normal file
View File

@ -0,0 +1,11 @@
To install dependencies:
```sh
bun install
```
To run:
```sh
bun run dev
```
open http://localhost:3000

12
apps/api/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "@boring.tools/api",
"scripts": {
"dev": "bun run --hot src/index.ts"
},
"dependencies": {
"hono": "^4.6.3"
},
"devDependencies": {
"@types/bun": "latest"
}
}

9
apps/api/src/index.ts Normal file
View File

@ -0,0 +1,9 @@
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello Hono!')
})
export default app

7
apps/api/tsconfig.json Normal file
View File

@ -0,0 +1,7 @@
{
"compilerOptions": {
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
}
}