Domain-Driven Design course accompaniment project
- Spring Boot
- Gradle
Build the project for the first time: ./gradlew build
- Firsts you need a mysql instance, you can use docker:
docker run --name [YOUR_MYSQL_NAME] -p3306:3306 -e MYSQL_ROOT_PASSWORD=[your_password] -d mysql:8.0.31
- Update your mysql configuration in
application.properties
- Run
./gradlew test
- Create the project JAR:
make build
- Run the tests and plugins verification tasks:
make test