Initial template

This commit is contained in:
hh
2026-09-08 19:15:15 +02:00
commit 2ad458c018
35 changed files with 865 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
COMPOSE := docker compose --project-directory ..
.PHONY: fmt check build dev
fmt:
bun run fix
check:
bun run check
bun run lint
build:
{% if serve == 'api' %} $(COMPOSE) run --rm frontend-dev sh -c "bun install && bun run build"
{% else %} $(COMPOSE) build frontend
{% endif %}
dev:
bun run dev