Autocommit test+ui polish
This commit is contained in:
9
Makefile
9
Makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user