Added justfile

This commit is contained in:
2025-01-18 01:42:49 +00:00
parent 719c73186d
commit e54e7bcf9d

11
justfile Normal file
View File

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