& so it begins

This commit is contained in:
user
2026-02-28 14:50:04 +02:00
commit f00381f2b6
536 changed files with 26294 additions and 0 deletions

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

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

11
apps/processor/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

View File

@@ -0,0 +1,13 @@
{
"name": "@app/processor",
"scripts": {
"dev": "bun run --hot src/index.ts",
"prod": "bun run src/index.ts"
},
"dependencies": {
"hono": "^4.12.3"
},
"devDependencies": {
"@types/bun": "latest"
}
}

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

View File

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