about summary refs log tree commit diff stats
path: root/justfile
blob: 2c4c464f30dac69ec89e1b1598cfad63e142be77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /usr/bin/env -S nix develop . --command just --justfile

fly-system := "x86_64-linux"
fly-registry := "registry.fly.io/alanpearce-eu"
docker-tag := env_var_or_default("DOCKER_TAG", `git rev-parse HEAD`)

default:
    @just --list --justfile {{ justfile() }} --unsorted

check:
    nix flake check . --print-build-logs

check-licenses:
    nix run nixpkgs#go-licenses

update-all:
    go get -u all
    gomod2nix --outdir nix
    nix flake update

watch-flake command:
    watchexec --restart -w flake.nix -w flake.lock direnv exec . {{ command }}

watch-builder: (watch-flake "watchexec -i cmd/server -i public -r go run ./cmd/build --base-url http://localhost:3000")

nix-build what:
    nix build .#{{ what }}

watch-server: (watch-flake "watchexec -r go run ./cmd/server")

docker-stream system=(arch() + "-linux"):
    @nix build --print-out-paths .#docker-stream-{{ system }} | sh

docker-image system=(arch() + "-linux"):
    nix build .#docker-image-{{ system }}

docker-stream-fly:
    just docker-stream {{ fly-system }}

docker-image-fly: (docker-image fly-system)

docker-inspect image-path="result" *skopeo-flags="":
    skopeo {{ skopeo-flags }} inspect docker-archive:{{ image-path }}

print-docker-tag:
    @echo {{ fly-registry }}:{{ docker-tag }}

stream-to-registry *skopeo-flags="":
    just docker-stream-fly | gzip --fast | skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive:/dev/stdin docker://{{ fly-registry }}:{{ docker-tag }}

result := `readlink -f result`
push-to-registry *skopeo-flags="":
    skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive://{{ result }}  docker://{{ fly-registry }}:{{ docker-tag }}

deploy registry-and-tag=(fly-registry + ":" + docker-tag):
    fly deploy --image {{ registry-and-tag }}