This commit is contained in:
2025-06-09 12:29:24 -06:00
parent 50aafc932c
commit 7c007d351d
8 changed files with 415 additions and 0 deletions

25
Makefile Normal file
View File

@ -0,0 +1,25 @@
.PHONY: run build test clean help
# Default target
help:
@echo "Available commands:"
@echo " run - Run the API server"
@echo " build - Build the API binary"
@echo " test - Run tests"
@echo " clean - Clean build artifacts"
# Run the API server
run:
go run main.go
# Build the API binary
build:
go build -o bin/api main.go
# Run tests
test:
go test ./...
# Clean build artifacts
clean:
rm -rf bin/