Configuring an Application with Spring Boot
./gradlew :05-configure-app:bootRun
To sign in, see the list of users in src/main/resources/application.properties
.
./gradlew :05-configure-app:bootRun -Dspring.profiles.active=test
Or with the following this Unix command
SPRING_PROFILES_ACTIVE=test ./gradlew :05-configure-app:bootRun
To sign in, see the list of users in src/main/resources/application-test.properties
.