Загрузить файлы в «/»

This commit is contained in:
2026-04-28 15:18:40 +00:00
parent 60669d60ec
commit 2b7c8b6100
5 changed files with 55 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY: build run test docker-build
build:
go build -o bin/matrix-qr-login ./cmd/server
run:
go run ./cmd/server
test:
go test ./...
docker-build:
docker build -t matrix-qr-login:latest .