Initial commit

This commit is contained in:
2024-08-03 09:28:23 +02:00
commit 20b7273131
28 changed files with 1625 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
TARGET = ./site
.PHONY: clean distclean test components $(TARGET)
.NOTPARALLEL:
$(TARGET): components
$(info ===> BUILD site)
@go build ./cmd/site
components:
$(info ===> BUILD templates)
cd web/components && templ generate
clean:
$(info ===> CLEAN)
@go clean
@rm -f $(TARGET)