chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:13 -08:00
parent 43a7b88e2a
commit 041fae1574
223 changed files with 12940 additions and 11756 deletions

View File

@@ -1,11 +1,12 @@
.PHONY: help install dev build test clean migrate
.PHONY: help install dev build test test-e2e clean migrate
help:
@echo "Available targets:"
@echo " install - Install dependencies"
@echo " dev - Start development environment"
@echo " build - Build all services"
@echo " test - Run tests"
@echo " test - Run backend + frontend tests (go test, lint, type-check)"
@echo " test-e2e - Run Playwright E2E tests (default: explorer.d-bis.org)"
@echo " clean - Clean build artifacts"
@echo " migrate - Run database migrations"
@@ -31,6 +32,9 @@ test:
cd backend && go test ./...
cd frontend && npm test
test-e2e:
npx playwright test
clean:
cd backend && go clean ./...
cd frontend && rm -rf .next node_modules