Upload images to your PDS and get instant CDN URLs via images.blue

add makefile to keep track of signing command for windows

evan.jarrett.net 49c718e3 49e5890b

verified
+7
+5
Makefile
··· 1 + 2 + PHONY: build-windows 3 + build-windows: 4 + @GOOS=windows go build -o ./blup.exe ./cmd/cli/main.go 5 + @osslsigncode sign -pkcs12 ../mycert.pfx -askpass -n "Blup" -i "https://blup.imgs.blue" -in ./blup.exe -out ./blup-signed.exe
+2
go.mod
··· 4 4 5 5 require ( 6 6 github.com/bluesky-social/indigo v0.0.0-20250621010046-488d1b91889b 7 + //github.com/gen2brain/beeep v0.11.1 7 8 github.com/golang-jwt/jwt/v5 v5.2.2 8 9 github.com/haileyok/atproto-oauth-golang v0.0.3-0.20250622200753-e07caa5274a7 9 10 github.com/ipfs/go-cid v0.5.0 ··· 11 12 github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c 12 13 github.com/spf13/cobra v1.9.1 13 14 github.com/zalando/go-keyring v0.2.6 15 + //golang.design/x/clipboard v0.7.1 14 16 ) 15 17 16 18 require (