diff options
author | Alan Pearce | 2024-06-29 15:22:22 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-29 15:22:22 +0200 |
commit | afded3e0e7dd206e7d6f01098c445413b2eab6d1 (patch) | |
tree | 88c3311abe0eb869fa7340b85d174adeafd59137 /justfile | |
parent | 5321bb053747867cca4ab75616ce60139108f624 (diff) | |
download | dns-afded3e0e7dd206e7d6f01098c445413b2eab6d1.tar.lz dns-afded3e0e7dd206e7d6f01098c445413b2eab6d1.tar.zst dns-afded3e0e7dd206e7d6f01098c445413b2eab6d1.zip |
use just for deployment
Diffstat (limited to 'justfile')
-rwxr-xr-x | justfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100755 index 0000000..2c4318c --- /dev/null +++ b/justfile @@ -0,0 +1,13 @@ +#! /usr/bin/env cached-nix-shell +#! nix-shell -i "just --justfile" + +preview: + dnscontrol preview + +push: + dnscontrol push + +ci: + dnscontrol check + +cd: push |