2
0
Files
bot/packages/scripts/index.ts

24 lines
491 B
TypeScript
Raw Normal View History

import { PrismaClient } from 'db'
2022-02-25 09:45:31 +01:00
import path from 'path'
import { injectFakeResults } from 'utils'
2022-02-25 09:45:31 +01:00
require('dotenv').config({
path: path.join(
__dirname,
process.env.NODE_ENV === 'staging' ? '.env.staging' : '.env.local'
2022-02-25 09:45:31 +01:00
),
})
const prisma = new PrismaClient()
const main = async () => {
await injectFakeResults(prisma)({
2022-09-25 20:16:08 +02:00
count: 200,
typebotId: 'cl8hl08xt009909l6pwqenf63',
isChronological: false,
2022-09-25 20:16:08 +02:00
fakeStorage: 3 * 1024 * 1024 * 1024,
})
}
2022-02-25 09:45:31 +01:00
main().then()