-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add user data to local JSON files
- Loading branch information
1 parent
a9ab9d9
commit 020ed24
Showing
67 changed files
with
1,058 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 1, | ||
"first_name": "Admin", | ||
"last_name": "User", | ||
"username": "admin", | ||
"email": "[email protected]", | ||
"password": "password" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 10, | ||
"first_name": "Grace", | ||
"last_name": "Davis", | ||
"username": "gracedavis", | ||
"email": "[email protected]", | ||
"password": "grace1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 11, | ||
"first_name": "Harry", | ||
"last_name": "Garcia", | ||
"username": "harrygarcia", | ||
"email": "[email protected]", | ||
"password": "harry1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 12, | ||
"first_name": "Ivy", | ||
"last_name": "Martinez", | ||
"username": "ivymartinez", | ||
"email": "[email protected]", | ||
"password": "ivy1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 13, | ||
"first_name": "Jack", | ||
"last_name": "Rodriguez", | ||
"username": "jackrodriguez", | ||
"email": "[email protected]", | ||
"password": "jack1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 14, | ||
"first_name": "Kelly", | ||
"last_name": "Lopez", | ||
"username": "kellylopez", | ||
"email": "[email protected]", | ||
"password": "kelly1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 15, | ||
"first_name": "Liam", | ||
"last_name": "Harris", | ||
"username": "liamharris", | ||
"email": "[email protected]", | ||
"password": "liam1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 16, | ||
"first_name": "Mia", | ||
"last_name": "Clark", | ||
"username": "miaclark", | ||
"email": "[email protected]", | ||
"password": "mia1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 17, | ||
"first_name": "Noah", | ||
"last_name": "Lewis", | ||
"username": "noahlewis", | ||
"email": "[email protected]", | ||
"password": "noah1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 18, | ||
"first_name": "Olivia", | ||
"last_name": "Walker", | ||
"username": "oliviawalker", | ||
"email": "[email protected]", | ||
"password": "olivia1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 19, | ||
"first_name": "Paul", | ||
"last_name": "Hall", | ||
"username": "paulhall", | ||
"email": "[email protected]", | ||
"password": "paul1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 2, | ||
"first_name": "John", | ||
"last_name": "Doe", | ||
"username": "johndoe", | ||
"email": "[email protected]", | ||
"password": "abcd1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 20, | ||
"first_name": "Quinn", | ||
"last_name": "Allen", | ||
"username": "quinnallen", | ||
"email": "[email protected]", | ||
"password": "quinn1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 21, | ||
"first_name": "Ruby", | ||
"last_name": "Young", | ||
"username": "rubyyoung", | ||
"email": "[email protected]", | ||
"password": "ruby1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 22, | ||
"first_name": "Sam", | ||
"last_name": "Hernandez", | ||
"username": "samhernandez", | ||
"email": "[email protected]", | ||
"password": "sam1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 23, | ||
"first_name": "Tina", | ||
"last_name": "King", | ||
"username": "tinaking", | ||
"email": "[email protected]", | ||
"password": "tina1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 24, | ||
"first_name": "Uma", | ||
"last_name": "Wright", | ||
"username": "umawright", | ||
"email": "[email protected]", | ||
"password": "uma1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 25, | ||
"first_name": "Victor", | ||
"last_name": "Lopez", | ||
"username": "victorlopez", | ||
"email": "[email protected]", | ||
"password": "victor1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 26, | ||
"first_name": "Wendy", | ||
"last_name": "Hill", | ||
"username": "wendyhill", | ||
"email": "[email protected]", | ||
"password": "wendy1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 27, | ||
"first_name": "Xander", | ||
"last_name": "Scott", | ||
"username": "xanderscott", | ||
"email": "[email protected]", | ||
"password": "xander1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 28, | ||
"first_name": "Yara", | ||
"last_name": "Green", | ||
"username": "yaragreen", | ||
"email": "[email protected]", | ||
"password": "yara1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 29, | ||
"first_name": "Zane", | ||
"last_name": "Adams", | ||
"username": "zaneadams", | ||
"email": "[email protected]", | ||
"password": "zane1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 3, | ||
"first_name": "Jane", | ||
"last_name": "Doe", | ||
"username": "janedoe", | ||
"email": "[email protected]", | ||
"password": "12abcdJJ" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 30, | ||
"first_name": "Aaron", | ||
"last_name": "Baker", | ||
"username": "aaronbaker", | ||
"email": "[email protected]", | ||
"password": "aaron1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 31, | ||
"first_name": "Bella", | ||
"last_name": "Gonzalez", | ||
"username": "bellagonzalez", | ||
"email": "[email protected]", | ||
"password": "bella1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 32, | ||
"first_name": "Chris", | ||
"last_name": "Nelson", | ||
"username": "chrisnelson", | ||
"email": "[email protected]", | ||
"password": "chris1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 33, | ||
"first_name": "Daisy", | ||
"last_name": "Carter", | ||
"username": "daisycarter", | ||
"email": "[email protected]", | ||
"password": "daisy1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 34, | ||
"first_name": "Ethan", | ||
"last_name": "Mitchell", | ||
"username": "ethanmitchell", | ||
"email": "[email protected]", | ||
"password": "ethan1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 35, | ||
"first_name": "Fiona", | ||
"last_name": "Perez", | ||
"username": "fionaperez", | ||
"email": "[email protected]", | ||
"password": "fiona1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 36, | ||
"first_name": "George", | ||
"last_name": "Roberts", | ||
"username": "georgeroberts", | ||
"email": "[email protected]", | ||
"password": "george1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 37, | ||
"first_name": "Hannah", | ||
"last_name": "Turner", | ||
"username": "hannahturner", | ||
"email": "[email protected]", | ||
"password": "hannah1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 38, | ||
"first_name": "Ian", | ||
"last_name": "Phillips", | ||
"username": "ianphillips", | ||
"email": "[email protected]", | ||
"password": "ian1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 39, | ||
"first_name": "Jill", | ||
"last_name": "Campbell", | ||
"username": "jillcampbell", | ||
"email": "[email protected]", | ||
"password": "jill1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 4, | ||
"first_name": "Alice", | ||
"last_name": "Smith", | ||
"username": "alicesmith", | ||
"email": "[email protected]", | ||
"password": "alice1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 40, | ||
"first_name": "Kyle", | ||
"last_name": "Parker", | ||
"username": "kyleparker", | ||
"email": "[email protected]", | ||
"password": "kyle1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 41, | ||
"first_name": "Lena", | ||
"last_name": "Evans", | ||
"username": "lenaevans", | ||
"email": "[email protected]", | ||
"password": "lena1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 42, | ||
"first_name": "Mike", | ||
"last_name": "Edwards", | ||
"username": "mikeedwards", | ||
"email": "[email protected]", | ||
"password": "mike1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 43, | ||
"first_name": "Nina", | ||
"last_name": "Collins", | ||
"username": "ninacollins", | ||
"email": "[email protected]", | ||
"password": "nina1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 44, | ||
"first_name": "Oscar", | ||
"last_name": "Stewart", | ||
"username": "oscarstewart", | ||
"email": "[email protected]", | ||
"password": "oscar1234" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": 45, | ||
"first_name": "Paula", | ||
"last_name": "Sanchez", | ||
"username": "paulasanchez", | ||
"email": "[email protected]", | ||
"password": "paula1234" | ||
} |
Oops, something went wrong.