Created
March 31, 2020 00:04
-
-
Save dalthonmh/1e9b9a974952af094110fd0ac7e0269e to your computer and use it in GitHub Desktop.
Mongo Seeding CLI | examples/import-data-json/data/users.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"_id": { "$oid": "5e601e82b3f2a43b5477b647" }, | |
"name": "Dalthon", | |
"lastname": "Mamani", | |
"username": "D4ITON", | |
"password": "$2a$10$hhn8vSvl6rpv42undbkQ.O5XIdIJkujyqQWqKIxRJgLQYCGlM/6rW", | |
"role": "admin" | |
}, | |
{ | |
"_id": { "$oid": "5e601e8cb3f2a43b5477b648" }, | |
"name": "Juan", | |
"lastname": "Pérez", | |
"username": "JU4N", | |
"password": "$2a$10$hhn8vSvl6rpv42undbkQ.O5XIdIJkujyqQWqKIxRJgLQYCGlM/6rW", | |
"role": "mozo" | |
}, | |
{ | |
"_id": { "$oid": "5e606354dc8aec3040688a7f" }, | |
"name": "Marta", | |
"lastname": "López", | |
"username": "Marta", | |
"password": "$2a$10$hhn8vSvl6rpv42undbkQ.O5XIdIJkujyqQWqKIxRJgLQYCGlM/6rW", | |
"role": "despachador" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment