semantic bufo search find-bufo.com
bufo
at main 25 lines 427 B view raw
1# bot/justfile 2set shell := ["bash", "-eu", "-o", "pipefail", "-c"] 3 4default: 5 @just --list 6 7# build the bot 8build: 9 zig build 10 11# run the bot locally 12run: 13 zig build run 14 15# deploy to fly.io 16deploy: 17 fly deploy --wait-timeout 180 18 19# check logs 20logs: 21 fly logs -a bufo-bot 22 23# set secrets (run once) 24secrets HANDLE PASSWORD: 25 fly secrets set BSKY_HANDLE={{ HANDLE }} BSKY_APP_PASSWORD={{ PASSWORD }} -a bufo-bot