Migrated project to use golang.

This commit is contained in:
2026-04-14 08:08:54 +02:00
parent 44fb025c81
commit dbf7858afd
18 changed files with 762 additions and 906 deletions
+13
View File
@@ -0,0 +1,13 @@
# Run the application
run:
go run ./cmd
# Build the application binary into a bin/ folder
build:
go build -o bin/website ./cmd
@echo "Project built in bin directory"
# Clean up binaries and build artifacts
clean:
rm -rf bin/
@echo "Build artifacts removed."