From 1ce8b47e51f79039c93be86dedf88f8f05551511 Mon Sep 17 00:00:00 2001 From: Lan Quil Date: Tue, 11 Jun 2024 22:55:05 +0200 Subject: [PATCH] Add justfile --- justfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..d74c7d5 --- /dev/null +++ b/justfile @@ -0,0 +1,11 @@ +# Lint +check: + pre-commit run --all-files + +deploy: + cd playbooks && ansible-playbook main.yaml + +# Print help about 'just' +help: + @ just --list + @ echo "More help: https://just.systems/man/en/chapter_20.html"