emdb/Makefile

9 lines
175 B
Makefile
Raw Normal View History

2023-12-21 15:01:06 +01:00
2023-12-25 10:54:21 +01:00
run-api:
2023-12-22 18:12:30 +01:00
go run ./cmd/api-service/service.go -apikey localOnly
2023-12-21 15:01:06 +01:00
2023-12-23 12:08:58 +01:00
run-tui:
2023-12-25 10:54:21 +01:00
go run ./cmd/terminal-client/main.go
build-api:
go build -o emdb-api ./cmd/api-service/service.go