Skip to content

Commit

Permalink
racheliscool
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed Mar 21, 2022
1 parent ab8566b commit f840ca0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This starts your app in development mode, rebuilding assets on file changes.
The database seed script creates a new user with some data you can use to get started:

- Email: `[email protected]`
- Password: `rachelrox`
- Password: `racheliscool`

### Relevant code:

Expand Down
2 changes: 1 addition & 1 deletion prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async function seed() {
// no worries if it doesn't exist yet
});

const hashedPassword = await bcrypt.hash("rachelrox", 10);
const hashedPassword = await bcrypt.hash("racheliscool", 10);

const user = await prisma.user.create({
data: {
Expand Down

0 comments on commit f840ca0

Please sign in to comment.