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"