Skip to content

Commit bf33bcf

Browse files
committed
Add in commands for adding another user and group.
1 parent e9f51a6 commit bf33bcf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ You'll also want to populate the database with some data to test your queries. Y
1212

1313
```
1414
db.users.insert({_id: "123", username: "jeresig", groupId: "dev"})
15+
db.users.insert({_id: "456", username: "lorensr", groupId: "author"})
1516
db.groups.insert({_id: "dev", name: "Developers"})
17+
db.groups.insert({_id: "author", name: "Authors"})
1618
```
1719

1820
By default the servers are expecting to find data on your local computer in a database named "testdb". You can configure this by changing the settings in `models.js`.

0 commit comments

Comments
 (0)