const mockOutputPath = './db/generated' const magic = 1000 // Insert here how many users you would like to generate: const total = 30 const batchSize = 10 // Amount of responses for a complete survey const questions = 7 // 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, }