prompt 10
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
.PHONY: dev ui-build ui-dev test db-reset fmt
|
||||
|
||||
dev:
|
||||
go run ./cmd/server
|
||||
|
||||
ui-build:
|
||||
cd ui-kit && npm i && npm run build
|
||||
|
||||
ui-dev:
|
||||
cd ui-kit && npm i && npm run dev
|
||||
|
||||
test:
|
||||
go test ./...
|
||||
|
||||
db-reset:
|
||||
rm -f ./data/app.db ./data/app.sqlite3
|
||||
|
||||
fmt:
|
||||
gofmt -w $$(find ./cmd ./internal -type f -name '*.go')
|
||||
Reference in New Issue
Block a user