This commit is contained in:
2021-03-09 01:13:42 +01:00
commit 7fc8feb0cc
32 changed files with 3700 additions and 0 deletions

11
Makefile Executable file
View File

@ -0,0 +1,11 @@
MAKEFLAGS += -j2
export PORT = 8080
dev: dev-server dev-view
dev-server:
cd server && gin run main.go
dev-view:
cd view && npm run dev