feat: bootstrap temporserv project scaffold

Add the initial project blueprint, Go backend skeleton, frontend app shell, database schema draft, and local development/deployment files.
This commit is contained in:
2026-04-02 22:17:48 +03:00
commit 2b3123a9a7
37 changed files with 4863 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
backend-run:
go run ./cmd/server
backend-test:
go test ./...
frontend-install:
npm --prefix apps/web install
frontend-dev:
npm --prefix apps/web run dev
frontend-build:
npm --prefix apps/web run build
dev:
@echo "Run backend and frontend in separate terminals."