feat: add API

- try localhost:1225/search?search_term=akk
This commit is contained in:
Sheldon Cooper 2025-09-11 23:15:08 -04:00
parent fdae502ec7
commit 38919f3a5a
13 changed files with 367 additions and 161 deletions

View file

@ -2,5 +2,16 @@
"devDependencies": {
"turbo": "^2.5.4"
},
"packageManager": "pnpm@10.11.0"
"packageManager": "pnpm@10.11.0",
"scripts": {
"build:vdb-backend": "npm run build -w apps/vdb-backend",
"build:vdn-static": "npm run build -w apps/vdn-static",
"run:dev:vdb-backend": "npm run dev -w apps/vdb-backend",
"run:dev:vdn-static": "npm run dev -w apps/vdn-static",
"run:dev:all": "run-p run:dev:vdb-backend run:dev:vdn-static"
},
"workspaces": [
"apps/vdb-backend",
"apps/vdn-static"
]
}