I get told to shut up a lot by my friend. This is the microsite that documents this in detail. shutup.jp
postcards microsite
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add import postcards task

+8 -1
+1
.gitignore
··· 1 1 /dist/ 2 + .env
+6
Taskfile.yml
··· 2 2 3 3 version: '3' 4 4 5 + dotenv: 6 + - .env 7 + 5 8 tasks: 6 9 build: 7 10 cmds: ··· 12 15 dev: 13 16 cmds: 14 17 - task serve & find {*.tmpl,static,*.go} -type f | entr -cc task build 18 + postcards: 19 + cmds: 20 + - for y in "${ORIGINAL_POSTCARDS}"/*.yaml; do postcards compile --outdir ./postcards --web --override "$y"; done
+1 -1
main.go
··· 31 31 var pcs []Postcard 32 32 toCopy := []string{"static/postcard.css", "static/shutup.css"} 33 33 34 - for _, file := range files[:3] { 34 + for _, file := range files { 35 35 var pc Postcard 36 36 f, err := os.Open(file) 37 37 check(err)