c5958f283f
- Astro 5.x static site with content collections for extensions - Pages: index, [slug] (per-extension), coffee (Ko-fi), feedback form - Go binary gs-feedback: SQLite storage + Discord webhook notification - Nginx config: static serving + POST proxy to Go backend - Deploy script: build + rsync to VPS - ThockBoard landing page with features and sound pack listing
8 lines
127 B
Makefile
8 lines
127 B
Makefile
.PHONY: build clean
|
|
|
|
build:
|
|
mkdir -p bin
|
|
CGO_ENABLED=0 go build -ldflags="-s -w" -o bin/gs-feedback ./...
|
|
|
|
clean:
|
|
rm -rf bin
|