#Spectingular.Spock The needs of the many outweigh the needs of the few
spectingular.spock is a dashboard that provides insight into the state of the spectingular.builder.
- Java 8
- MongoDB
To be able to use Spock, a MongoDB instance should be created. Lets call the instance spock. Complete the following steps to do so.
- login to mongo. (on the commandline type
mongo
) - select the db.
use spock
- add user and assign roles
db.createUser(
{
"user": "spock",
"pwd": "spock",
"roles": [{"role": "userAdmin", "db": "test-spock"}]
}
)
Use db.addUser
in mongo < 2.6
mvn spring-boot:run