mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-26 06:17:21 +02:00
97 lines
1.8 KiB
TypeScript
97 lines
1.8 KiB
TypeScript
import { DEFAULT_USER_PASSWORD } from './constants';
|
|
|
|
export interface UserCredentials {
|
|
email: string;
|
|
password: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
mfaEnabled?: boolean;
|
|
mfaSecret?: string;
|
|
mfaRecoveryCodes?: string[];
|
|
}
|
|
|
|
// Simple name generators
|
|
const FIRST_NAMES = [
|
|
'Alex',
|
|
'Jordan',
|
|
'Taylor',
|
|
'Morgan',
|
|
'Casey',
|
|
'Riley',
|
|
'Avery',
|
|
'Quinn',
|
|
'Sam',
|
|
'Drew',
|
|
'Blake',
|
|
'Sage',
|
|
'River',
|
|
'Rowan',
|
|
'Skylar',
|
|
'Emery',
|
|
];
|
|
|
|
const LAST_NAMES = [
|
|
'Smith',
|
|
'Johnson',
|
|
'Williams',
|
|
'Brown',
|
|
'Jones',
|
|
'Garcia',
|
|
'Miller',
|
|
'Davis',
|
|
'Rodriguez',
|
|
'Martinez',
|
|
'Hernandez',
|
|
'Lopez',
|
|
'Gonzalez',
|
|
'Wilson',
|
|
'Anderson',
|
|
'Thomas',
|
|
];
|
|
|
|
const getRandomName = (names: string[]): string => {
|
|
return names[Math.floor(Math.random() * names.length)];
|
|
};
|
|
|
|
const randFirstName = (): string => getRandomName(FIRST_NAMES);
|
|
const randLastName = (): string => getRandomName(LAST_NAMES);
|
|
|
|
export const INSTANCE_OWNER_CREDENTIALS: UserCredentials = {
|
|
email: 'nathan@n8n.io',
|
|
password: DEFAULT_USER_PASSWORD,
|
|
firstName: randFirstName(),
|
|
lastName: randLastName(),
|
|
mfaEnabled: false,
|
|
mfaSecret: 'KVKFKRCPNZQUYMLXOVYDSQKJKZDTSRLD',
|
|
mfaRecoveryCodes: ['d04ea17f-e8b2-4afa-a9aa-57a2c735b30e'],
|
|
};
|
|
|
|
export const INSTANCE_ADMIN_CREDENTIALS: UserCredentials = {
|
|
email: 'admin@n8n.io',
|
|
password: DEFAULT_USER_PASSWORD,
|
|
firstName: randFirstName(),
|
|
lastName: randLastName(),
|
|
};
|
|
|
|
export const INSTANCE_MEMBER_CREDENTIALS: UserCredentials[] = [
|
|
{
|
|
email: 'member@n8n.io',
|
|
password: DEFAULT_USER_PASSWORD,
|
|
firstName: randFirstName(),
|
|
lastName: randLastName(),
|
|
},
|
|
{
|
|
email: 'member2@n8n.io',
|
|
password: DEFAULT_USER_PASSWORD,
|
|
firstName: randFirstName(),
|
|
lastName: randLastName(),
|
|
},
|
|
];
|
|
|
|
export const INSTANCE_CHAT_CREDENTIALS: UserCredentials = {
|
|
email: 'chat@n8n.io',
|
|
password: DEFAULT_USER_PASSWORD,
|
|
firstName: randFirstName(),
|
|
lastName: randLastName(),
|
|
};
|