change url to wasp.sh

This commit is contained in:
vincanger
2025-02-13 12:59:17 +01:00
parent 8fdee109e4
commit 7e46899a44
33 changed files with 86 additions and 85 deletions

View File

@@ -8,7 +8,7 @@ type MockUserData = Omit<User, 'id'>;
/**
* This function, which we've imported in `app.db.seeds` in the `main.wasp` file,
* seeds the database with mock users via the `wasp db seed` command.
* For more info see: https://wasp-lang.dev/docs/data-model/backends#seeding-the-database
* For more info see: https://wasp.sh/docs/data-model/backends#seeding-the-database
*/
export async function seedMockUsers(prismaClient: PrismaClient) {
await Promise.all(generateMockUsersData(50).map((data) =>