all repos — dns @ dbd93bdf362cbb131d3b012ee9ce9fa5b1e22e01

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
#! /usr/bin/env cached-nix-shell
#! nix-shell -i "just --justfile"

preview:
    dnscontrol preview --cmode all

build: preview

push:
    dnscontrol push --cmode all

run: push

test:
    dnscontrol check

ci: test

cd: push