API redesign, better styling for the blog page

This commit is contained in:
ngn
2024-07-24 01:15:37 +03:00
parent 51b9214a5c
commit 6400f1fa95
16 changed files with 622 additions and 558 deletions

View File

@ -1,7 +1,12 @@
server: *.go routes/* util/*
all: server
server: *.go routes/* util/* global/* database/*
go build -o server .
test:
FRONTEND_URL=http://localhost:5173/ PASSWORD=test ./server
.PHONY: test
format:
gofmt -s -w .
.PHONY: test format