Merge branch 'main' into fix-#41-db-migration-Signature_recipientId_fkey

This commit is contained in:
Timur Ercan
2023-04-11 15:34:32 +02:00
committed by GitHub
7 changed files with 128 additions and 100 deletions

View File

@ -24,7 +24,7 @@ async function createUser(userData: { email: string; password: string }) {
async function main() {
console.info("Start seeding...");
const password = "123456789";
const email = "example6@documenso.com";
const email = "example@documenso.com";
const user = await createUser({
email: email,
password: await hashPassword(password),