Last active
September 12, 2022 17:36
-
-
Save neverkas/d6a6c30ff7e5c0356cd0808e6e99fe65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: install run | |
install: install-maven install-spring | |
install-maven: | |
$(info Instalando Maven..) | |
@mvn install | |
install-spring: | |
$(info Instalando Spring..) | |
@mvn spring-boot:run | |
run: | |
$(info Ejecutando npm..) | |
@npm start | |
.PHONY: all install install-maven install-spring run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment