Seed more profiles

This commit is contained in:
MartinBraquet
2026-02-27 17:17:41 +01:00
parent 5ce38fea65
commit d0176c2b65

View File

@@ -60,9 +60,9 @@ type ProfileType = 'basic' | 'medium' | 'full'
//Edit the count seedConfig to specify the amount of each profiles to create
const seedConfig = [
{count: 1, profileType: 'basic' as ProfileType},
{count: 1, profileType: 'medium' as ProfileType},
{count: 1, profileType: 'full' as ProfileType},
{count: 8, profileType: 'basic' as ProfileType},
{count: 8, profileType: 'medium' as ProfileType},
{count: 8, profileType: 'full' as ProfileType},
]
for (const {count, profileType} of seedConfig) {