Base Templates

This commit is contained in:
2025-12-10 20:39:40 +01:00
commit 10dfdd5605
7 changed files with 120 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
.PHONY ...
EXECUTABLE = cheatsh
PACKAGES = ./src/.
all: build
build:
@mkdir -p bin
go build -o bin/$(EXECUTABLE) $(PACKAGES)
clean:
rm -rf bin/
docker:
docker build -t cheatsh-test .
docker run -it --rm cheatsh-test /bin/sh