Setup basic project, runs on 8080 localhost

This commit is contained in:
2026-01-01 17:01:30 +00:00
parent 5abf978dbe
commit b407c1f722
9 changed files with 108 additions and 97 deletions

29
Makefile Normal file
View File

@@ -0,0 +1,29 @@
.PHONY: compile run clean verify test help
compile:
@echo "Compiling source files..."
mvn compile
run:
@echo "Running the application..."
mvn clean spring-boot:run
clean:
@echo "Cleaning build artifacts..."
mvn clean
verify:
@echo "Running tests and verifications..."
mvn verify
test:
@echo "Running tests..."
mvn test
help:
@echo "Available targets:"
@echo " make compile - Compile the source files"
@echo " make clean - Clean build artifacts"
@echo " make verify - Run tests and verifications"
@echo " make test - Run tests"
@echo " make help - Show this help message"