Merge pull request 'Add redeploy Makefile target' (#20) from feat/makefile-redeploy into main

Reviewed-on: #20
This commit was merged in pull request #20.
This commit is contained in:
2026-04-05 10:13:01 -04:00

View File

@@ -1,8 +1,11 @@
.PHONY: deploy build up down restart logs migrate migrate-new frontend test .PHONY: deploy redeploy build up down restart logs migrate migrate-new frontend test
# Build and deploy # Build and deploy
deploy: build up deploy: build up
redeploy:
git pull && $(MAKE) down && $(MAKE) up
build: build:
docker compose build raggr docker compose build raggr