| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const mockOutputPath = './db/generated/_batch'
- const magic = 1000
-
- // Insert here how many users you would like to generate:
- const total = 20
- const batchSize = 10
-
- // Amount of responses for a complete survey
- const questions = 13
-
- // Seekers per 100 profiles
- const percentageOfSeekers = 90
-
- const scoreVals = [100, 140, 180, 220, 260, 400]
-
- const header = `/**
- * GENERATED MOCK SIIMEE DATA
- * Generated at: ${Date.now()}
- */
- `
-
- const possibleZipcodes = [
- '90065', // Glassel
- '90012', // Chinatown
- '90240', // Downey
- '91030', // South Pasadena
- '91201', // Glendale
- '91399', // Woodland Hills
- '91401', // Van Nuys
- '90840', // Long Beach
- '91001', // Altadena
- '91011', // La Canada Flintridge
- '97075', // Beaverton
- ]
-
- module.exports = {
- mockOutputPath,
- magic,
- total,
- batchSize,
- questions,
- percentageOfSeekers,
- scoreVals,
- header,
- possibleZipcodes,
- }
|