Install MongoDB Install Maven
mvn clean install mvn spring-boot:run
Eager migrations can be found in the migrations package.
CreateLotsOfPeople populates fake people into Mongo DB with unique IDs and random combinations of first and last names.
{ "_id":"1000000001", "firstName":"Albus", "lastName":"Dumbledore", "wearsGlasses":true, "username":"dumbledore" }
** Implement Update for PersonController (with tests) ** Implement Search for PersonController (with tests) ** Ensure an index is unique (username in Person) ** Write an integration test for unique username ** Do a migration via Java (add sibling field to Person) ** Return a person's siblings