Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

config.js 915B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. const mockOutputPath = './db/generated'
  2. const magic = 1000
  3. // Insert here how many users you would like to generate:
  4. const total = 30
  5. const batchSize = 10
  6. // Amount of responses for a complete survey
  7. const questions = 7
  8. // Seekers per 100 profiles
  9. const percentageOfSeekers = 90
  10. const scoreVals = [100, 140, 180, 220, 260, 400]
  11. const header = `/**
  12. * GENERATED MOCK SIIMEE DATA
  13. * Generated at: ${Date.now()}
  14. */
  15. `
  16. const possibleZipcodes = [
  17. '90065', // Glassel
  18. '90012', // Chinatown
  19. '90240', // Downey
  20. '91030', // South Pasadena
  21. '91201', // Glendale
  22. '91399', // Woodland Hills
  23. '91401', // Van Nuys
  24. '90840', // Long Beach
  25. '91001', // Altadena
  26. '91011', // La Canada Flintridge
  27. '97075', // Beaverton
  28. ]
  29. module.exports = {
  30. mockOutputPath,
  31. magic,
  32. total,
  33. batchSize,
  34. questions,
  35. percentageOfSeekers,
  36. scoreVals,
  37. header,
  38. possibleZipcodes,
  39. }