seed.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "store": {
  3. "currencies": ["eur"]
  4. },
  5. "users": [
  6. {
  7. "email": "admin@medusa-test.com",
  8. "password": "supersecret"
  9. }
  10. ],
  11. "regions": [
  12. {
  13. "id": "test-region",
  14. "name": "Default Region",
  15. "currency_code": "eur",
  16. "tax_rate": 0,
  17. "payment_providers": ["stripe"],
  18. "fulfillment_providers": ["manual"],
  19. "countries": ["gb", "de", "dk", "se", "fr", "es", "it"]
  20. }
  21. ],
  22. "shipping_options": [
  23. {
  24. "name": "Standard Shipping",
  25. "region_id": "test-region",
  26. "provider_id": "manual",
  27. "data": {
  28. "id": "manual-fulfillment"
  29. },
  30. "price_type": "flat_rate",
  31. "amount": 1000
  32. }
  33. ],
  34. "products": [
  35. {
  36. "title": "Cool Test Product",
  37. "subtitle": null,
  38. "description": "Welcome to Medusa",
  39. "handle": "cool-test-product",
  40. "is_giftcard": false,
  41. "images": [],
  42. "thumbnail": "",
  43. "options": [
  44. {
  45. "title": "Size"
  46. }
  47. ],
  48. "variants": [
  49. {
  50. "title": "One Size",
  51. "prices": [
  52. {
  53. "currency_code": "eur",
  54. "amount": 19500
  55. }
  56. ],
  57. "options": [
  58. {
  59. "value": "One Size"
  60. }
  61. ],
  62. "inventory_quantity": 100,
  63. "manage_inventory": true
  64. }
  65. ]
  66. }
  67. ]
  68. }