GO=go

.PHONY: all test build run clean

all: build

build:
	$(GO) build -o bin/markdown-editor ./cmd/backend

run:
	$(GO) run ./cmd/backend

test:
	$(GO) test -v ./tests

clean:
	rm -rf bin
