feat: Initial commit

This commit is contained in:
mrhid6
2025-09-12 11:35:25 +00:00
parent 225a305fc8
commit 5d273dacd0
12 changed files with 680 additions and 0 deletions

45
makefile Normal file
View File

@@ -0,0 +1,45 @@
# Makefile for Go app with ngrok
APP_NAME := taskqueue-server
PORT := 10101
GO_BUILD := go build -o bin/$(APP_NAME)
NGROK_BIN := ngrok
.PHONY: build run serve ngrok kill clean
build:
@echo "🔨 Building Go app..."
@if [ ! -d bin ]; then mkdir bin; fi
$(GO_BUILD) .
run: build
@echo "🚀 Running Go app..."
./bin/$(APP_NAME)
serve: kill build
@echo "🚀 Running Go app in background..."
./bin/$(APP_NAME) & echo $$! > app.pid
sleep 2
@echo "🌐 Starting ngrok on port $(PORT)..."
$(NGROK_BIN) http --domain=handy-outgoing-finch.ngrok-free.app $(PORT) > /dev/null & echo $$! > ngrok.pid
ngrok:
@echo "🌐 Starting ngrok on port $(PORT)..."
$(NGROK_BIN) http --domain=handy-outgoing-finch.ngrok-free.app $(PORT) > /dev/null & echo $$! > ngrok.pid
kill:
@echo "🛑 Killing Go app (if running)..."
@if [ -f app.pid ]; then kill `cat app.pid` && rm app.pid; fi
@if [ -f ngrok.pid ]; then kill `cat ngrok.pid` && rm ngrok.pid; fi
clean: kill
@echo "🧹 Cleaning up..."
rm -f $(APP_NAME)
docker-build: kill build
@echo "Building Docker Image"
docker build -t gitea.hostxtra.co.uk/hostxtra/taskqueue-server:latest .
docker-push: docker-build
@echo "Pushing docker image"
docker push gitea.hostxtra.co.uk/hostxtra/taskqueue-server:latest