summaryrefslogtreecommitdiff
path: root/backend/data/seed.json
blob: 2c6b90633d30a2b646b76092ec601fc45649f943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
  "store": {
    "currencies": ["eur"]
  },
  "users": [
    {
      "email": "admin@lsb.local",
      "password": "supersecret"
    }
  ],
  "regions": [
    {
      "id": "fr",
      "name": "France",
      "currency_code": "eur",
      "tax_rate": 0,
      "payment_providers": ["manual"],
      "fulfillment_providers": ["manual"],
      "countries": ["fr"]
    }
  ],
  "shipping_options": [
    {
      "name": "Standard",
      "region_id": "fr",
      "provider_id": "manual",
      "price_type": "flat_rate",
      "amount": 500
    }
  ],
  "products": [
    {
      "title": "Savon Lavande",
      "handle": "savon-lavande",
      "description": "Savon artisanal a la lavande.",
      "thumbnail": "https://via.placeholder.com/600x600.png?text=Savon+Lavande",
      "options": [
        {
          "title": "Taille"
        }
      ],
      "variants": [
        {
          "title": "100g",
          "prices": [
            {
              "currency_code": "eur",
              "amount": 650
            }
          ],
          "options": [
            {
              "value": "100g"
            }
          ],
          "inventory_quantity": 100,
          "manage_inventory": true
        }
      ]
    }
  ]
}