feat: implement WYSIWYG markdown editor with Go backend and React frontend
This commit is contained in:
19
backend/Makefile
Normal file
19
backend/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
.PHONY: test
|
||||
|
||||
test:
|
||||
go test ./test -v
|
||||
|
||||
.PHONY: run
|
||||
|
||||
run:
|
||||
go run ./cmd/backend
|
||||
|
||||
.PHONY: build
|
||||
|
||||
build:
|
||||
go build -o markdown-editor ./cmd/backend
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
rm -rf markdown-editor
|
||||
Reference in New Issue
Block a user