Initial commit: ElysiaJS backend + TanStack Start frontend + Traefik compose

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
mane 2026-06-27 04:01:48 +00:00
commit a346cf3a5c
17 changed files with 505 additions and 0 deletions

17
backend/package.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "test-app-backend",
"version": "0.1.0",
"description": "ElysiaJS (Bun) backend for test-app-stack",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts"
},
"dependencies": {
"elysia": "^1.1.27",
"@elysiajs/cors": "^1.1.1"
},
"devDependencies": {
"bun-types": "^1.1.34"
}
}