#!/usr/bin/env cached-nix-shell
#!nix-shell -i "just --justfile"
docker-registry := "registry.fly.io/alanpearce-eu"
default:
@just --list --justfile {{ justfile() }} --unsorted
clean:
rm -fr website
check-licenses:
go-licenses check ./...
check-links:
hyperlink website/public
update-all:
npin update
go get -u all
build:
templ generate
go run ./cmd/build
dev:
modd
ci: build check-links
cd *DEPLOY_FLAGS:
fly auth docker
fly deploy --image $(KO_DOCKER_REPO={{ docker-registry }} ko build --bare ./cmd/server) {{ DEPLOY_FLAGS }}
justfile (view raw)