We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d06f63 commit 14f85c9Copy full SHA for 14f85c9
Makefile
@@ -68,6 +68,10 @@ endef
68
# MISCELANEOUS
69
###
70
71
+.PHONY: clean-up
72
+clean-up:
73
+ @git fetch -ap && git reset --hard && git clean -fd && git pull
74
+
75
.PHONY: set-environment
76
set-environment:
77
$(eval APP_ENV=$(shell gum choose --header "Setting up Makefile environment..." --selected "dev" "dev" "prod"))
@@ -297,6 +301,14 @@ uninstall-app: require-confirmation
297
301
fi;
298
302
$(MAKE) help
299
303
304
+###
305
+# CI/CD
306
307
308
+.PHONY: deploy
309
+deploy: clean-up build up ## Application: deploys the application
310
+ $(call taskDone)
311
300
312
313
# SHORTCUTS
314
0 commit comments