Sebastian Rindom пре 4 година
родитељ
комит
73110d6b82
1 измењених фајлова са 70 додато и 0 уклоњено
  1. 70 0
      data/seed.json

+ 70 - 0
data/seed.json

@@ -0,0 +1,70 @@
+{
+  "store": {
+    "currencies": ["eur"]
+  },
+  "users": [
+    {
+      "email": "admin@medusa-test.com",
+      "password": "supersecret"
+    }
+  ],
+  "regions": [
+    {
+      "id": "test-region",
+      "name": "Default Region",
+      "currency_code": "eur",
+      "tax_rate": 0,
+      "payment_providers": ["stripe"],
+      "fulfillment_providers": ["manual"],
+      "countries": ["gb", "de", "dk", "se", "fr", "es", "it"]
+    }
+  ],
+  "shipping_options": [
+    {
+      "name": "Standard Shipping",
+      "region_id": "test-region",
+      "provider_id": "manual",
+      "data": {
+        "id": "manual-fulfillment"
+      },
+      "price_type": "flat_rate",
+      "amount": 1000
+    }
+  ],
+  "products": [
+    {
+      "title": "Cool Test Product",
+      "subtitle": null,
+      "description": "Welcome to Medusa",
+      "handle": "cool-test-product",
+      "is_giftcard": false,
+      "images": [],
+      "thumbnail": "",
+      "options": [
+        {
+          "title": "Size"
+        }
+      ],
+      "variants": [
+        {
+          "title": "One Size",
+          "prices": [
+            {
+              "currency_code": "eur",
+              "amount": 19500
+            }
+          ],
+          "options": [
+            {
+              "value": "One Size"
+            }
+          ],
+          "inventory_quantity": 100,
+          "manage_inventory": true
+        }
+      ]
+    }
+  ]
+}
+
+