diff --git a/justfile b/justfile new file mode 100644 index 0000000..2ae1075 --- /dev/null +++ b/justfile @@ -0,0 +1,11 @@ +update: + docker compose down + git pull + docker compose build --no-cache + docker compose up -d + +merge_and_push_prod: + git switch prod + git merge main + git switch main + git push --all