all repos — dns @ c2e99f0acd931afd38002e80c9181876418b5fa3

DNS records for my domains, managed via dnscontrol

justfile (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /usr/bin/env cached-nix-shell
#! nix-shell -i "just --justfile"

preview:
	dnscontrol preview

build: preview

push:
	dnscontrol push
	./add_https.sh

run: push

test:
	dnscontrol check

ci: test

cd: push