add justfile for CD
1 file changed, 11 insertions(+), 0 deletions(-)
changed files
A justfile
@@ -0,0 +1,11 @@ +#!/usr/bin/env cached-nix-shell +#!nix-shell -i "just --justfile" -p just flyctl + +default: + @just --list --justfile {{ justfile() }} --unsorted + +cd *DEPLOY_FLAGS: && (deploy DEPLOY_FLAGS) + fly auth docker + +deploy *DEPLOY_FLAGS: + fly deploy {{ DEPLOY_FLAGS }}