Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #2841: Invalid emails and names in import:sample-data script #3160

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"./docs/tsconfig.json",
"./docs/docusaurus.config.ts",
"./docs/src/**",
"./docs/sidebars.ts"
"./docs/sidebars.ts",
"./sample_data/**"
],
// https://biomejs.dev/reference/configuration/#filesignoreunknown
"ignoreUnknown": true
Expand Down
22 changes: 22 additions & 0 deletions docs/docs/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,28 @@ You can run the app after closing the terminal or restating the vscode using the

**Note:** These commands will start the server in development mode.

## Sample Users

Below is a table of sample user data.

| **Name** | **Email Address** | **Password** | **Role** |
| ----------------- | --------------------------- | ------------- | --------------- |
| Wilt Shepherd | [email protected] | Pass@123 | administrator |
| Vyvyan Kerry | [email protected] | Pass@123 | administrator |
| Loyd Solomon | [email protected] | Pass@123 | administrator |
| Darcy Wilf | [email protected] | Pass@123 | administrator |
| Harve Lance | [email protected] | Pass@123 | regular |
| Praise Norris | [email protected] | Pass@123 | regular |
| Scott Tony | [email protected] | Pass@123 | regular |
| Teresa Bradley | [email protected] | Pass@123 | regular |
| Bruce Garza | [email protected] | Pass@123 | regular |
| Burton Sanders | [email protected] | Pass@123 | regular |
| Jeramy Garcia | [email protected] | Pass@123 | regular |
| Deanne Marks | [email protected] | Pass@123 | regular |
| Romeo Holland | [email protected] | Pass@123 | regular |
| Carla Nguyen | [email protected] | Pass@123 | regular |
| Peggy Bowers | [email protected] | Pass@123 | regular |

## Testing and Validation

Please refer to the [Testing and Validation Page](../developer-resources/testing.md) for more details
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"graphql": "^16.10.0",
"graphql-scalars": "^1.24.0",
"graphql-upload-minimal": "^1.6.1",
"inquirer": "^12.4.1",
"mercurius": "^16.0.1",
"mercurius-upload": "^8.0.0",
"minio": "^8.0.4",
Expand All @@ -39,6 +40,7 @@
"@faker-js/faker": "^9.4.0",
"@swc/cli": "0.6.0",
"@swc/core": "^1.10.9",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.0.3",
Expand Down
Loading
Loading