tests: add backend tests

This commit is contained in:
2026-01-19 12:46:07 -05:00
parent 5e8ac5e4b6
commit 627fcbafe1
9 changed files with 664 additions and 7 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
.PHONY: all frontend backend clean dev
all: frontend backend
frontend:
cd frontend && bun run build
backend:
cd backend && go build -o ./dist/aethera ./cmd
clean:
rm -rf frontend/public/dist
rm -rf backend/dist
dev:
cd backend && go run ./cmd --listen 0.0.0.0 &
cd frontend && bun run dev