()
| 133 | } |
| 134 | |
| 135 | async function seed() { |
| 136 | await seedIntegrationAuthMethods(); |
| 137 | |
| 138 | if (process.env.NODE_ENV === "development" && process.env.SEED_CLOUD === "enabled") { |
| 139 | await seedCloud(prisma); |
| 140 | } |
| 141 | |
| 142 | await runDataMigrations(); |
| 143 | } |
| 144 | |
| 145 | seed() |
| 146 | .catch((e) => { |
no test coverage detected
searching dependent graphs…