- Eliminate frontend JS build step completely: (remove dep: NodeJS, npx, tailwind, postcss, autoprefixer) - Declutter and cleanup index.html (8.49 KB to 3.4 KB) = ~60% savings. - Replace tailwind with custom CSS (10.64 KB to 1.96 KB) = ~81% savings. - Remove Google font (~100 KB) as there is very little text on the page. - Refactor and cleanup main.js and remove tailwind styling logic. (2.82 KB to 1.12 KB) = ~60% savings. - Net static asset reduction = 21.95 KB to 6.48 KB = ~70% savings apart from the 100+ KB elimination of Google fonts.
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			849 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			849 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CLI_BIN := ./bin/doggo-cli.bin
 | 
						|
API_BIN := ./bin/doggo-api.bin
 | 
						|
 | 
						|
HASH := $(shell git rev-parse --short HEAD)
 | 
						|
BUILD_DATE := $(shell date '+%Y-%m-%d %H:%M:%S')
 | 
						|
VERSION := ${HASH}
 | 
						|
 | 
						|
.PHONY: build-cli
 | 
						|
build-cli:
 | 
						|
	go build -o ${CLI_BIN} -ldflags="-X 'main.buildVersion=${VERSION}' -X 'main.buildDate=${BUILD_DATE}'" ./cmd/doggo/cli/
 | 
						|
 | 
						|
.PHONY: build-api
 | 
						|
build-api:
 | 
						|
	go build -o ${API_BIN} -ldflags="-X 'main.buildVersion=${VERSION}' -X 'main.buildDate=${BUILD_DATE}'" ./cmd/doggo/api/
 | 
						|
 | 
						|
.PHONY: build
 | 
						|
build: build-api build-cli
 | 
						|
 | 
						|
.PHONY: run-cli
 | 
						|
run-cli: build-cli ## Build and Execute the CLI binary after the build step.
 | 
						|
	${CLI_BIN}
 | 
						|
 | 
						|
.PHONY: run-api
 | 
						|
run-api: build-api ## Build and Execute the API binary after the build step.
 | 
						|
	${API_BIN} --config config-api-sample.toml
 | 
						|
 | 
						|
.PHONY: clean
 | 
						|
clean:
 | 
						|
	go clean
 | 
						|
	- rm -rf ./bin/
 | 
						|
 | 
						|
.PHONY: lint
 | 
						|
lint:
 | 
						|
	golangci-lint run
 |