Add justfile

This commit is contained in:
Lan Quil 2024-06-11 22:55:05 +02:00
parent 2f850b55bc
commit 1ce8b47e51
1 changed files with 11 additions and 0 deletions

11
justfile Normal file
View File

@ -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"