A human-friendly DSL for ATProto Lexicons
27
fork

Configure Feed

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

Improve release workflow

+13
+1
website/.gitignore
··· 3 3 4 4 # Zola output 5 5 public/ 6 + website.zip 6 7 7 8 # Local dev files 8 9 .DS_Store
+12
website/justfile
··· 20 20 # Start development server with live reload 21 21 serve: 22 22 zola serve 23 + 24 + # Zip the contents of public/ (not the folder itself) for direct upload 25 + # to static hosts. Strips macOS junk (.DS_Store, __MACOSX resource forks). 26 + zip: 27 + #!/usr/bin/env bash 28 + set -euo pipefail 29 + rm -f website.zip 30 + (cd public && zip -r ../website.zip . -x '*.DS_Store' '__MACOSX/*' '._*') 31 + echo "Wrote $(pwd)/website.zip" 32 + 33 + # Full release: build optimized site, then zip for upload. 34 + release: build-release zip