feat: init api, db, app

This commit is contained in:
2024-11-07 19:07:41 +00:00
parent ab9b3368d1
commit 11b063c2fa
43 changed files with 1487 additions and 137 deletions
+15
View File
@@ -0,0 +1,15 @@
# Makefile
.PHONY: test build run
# Run tests sequentially with verbose output
test:
go test -count 1 -p 1 -v rul.sh/vaulterm/tests
# Build the Go application
build:
go build -o myapp .
# Run the built application
run: build
./myapp