added makefile

This commit is contained in:
2026-03-25 21:31:32 +05:00
parent f8045fee7b
commit 2718c8ddb2

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: up build-up down deploy
up:
podman-compose up -d
build-up:
podman-compose build && podman-compose up -d
down:
podman-compose down
deploy:
podman-compose down && git pull && podman-compose build && podman-compose up -d