Autocommit test+ui polish

This commit is contained in:
mixa
2026-03-06 21:32:58 +03:00
parent 299ff65afd
commit dd89a5cf2d
19 changed files with 1115 additions and 553 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: build-all frontend-build sync-web backend-build run-all up down run-local run-backend run-frontend clean
.PHONY: build-all frontend-build sync-web backend-build run-all up down run-local run-backend run-frontend auto-commit push clean
build-all: frontend-build sync-web backend-build
@@ -33,5 +33,12 @@ run-backend:
run-frontend:
bun --cwd frontend dev
auto-commit:
git add -A
git commit -m "$(if $(MSG),$(MSG),chore: auto commit $$(date '+%Y-%m-%d %H:%M:%S'))"
push:
git push $(if $(REMOTE),$(REMOTE),origin) $(if $(BRANCH),$(BRANCH),$$(git branch --show-current))
clean:
rm -rf dist backend/web/dist frontend/dist