feat(added Services of Services, updated store logic for services, updated...

This commit is contained in:
2024-03-12 07:18:33 +00:00
committed by Vacheslav Andreevich
parent 651dfd93a5
commit baa0f3e665
19 changed files with 636 additions and 318 deletions

View File

@@ -16,6 +16,11 @@ rmrestart:
docker stop proxy-ui-vue
docker run -d --name proxy-ui-vue --rm -p 5000:80 proxy-ui-vue
clearhook:
@echo "clear hooks"
@rm -f $(HOOK_PATH)
@echo "hooks cleared"
prehook:
@echo "Setting up pre-push hook..."
@rm -f $(HOOK_PATH)
@@ -37,11 +42,9 @@ prehook:
@chmod +x $(HOOK_PATH)
@echo "Pre-push hook set successfully."
push:
ifeq ($(commit),)
$(error mn is not set)
endif
make prehook
git add . && git commit -m "feat($(commit)):" && GIT_SSL_NO_VERIFY=true git push
git add . && git commit -m "feat($(commit)):" && git push