Skip to content

Commit

Permalink
fix: add thumbnails
Browse files Browse the repository at this point in the history
  • Loading branch information
srindom committed Oct 6, 2021
1 parent 484da5f commit 0949d67
Showing 1 changed file with 147 additions and 147 deletions.
294 changes: 147 additions & 147 deletions data/seed.json
Original file line number Diff line number Diff line change
@@ -1,148 +1,148 @@
{
"store": {
"currencies": ["eur"]
},
"users": [
{
"email": "[email protected]",
"password": "supersecret"
}
],
"regions": [
{
"id": "test-region",
"name": "Default Region",
"currency_code": "eur",
"tax_rate": 0,
"payment_providers": ["manual"],
"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": "Medusa Waterbottle",
"subtitle": null,
"description": "The ultimate way to stay hydrated throughout the day, this waterbottle can contain a liter of your favorite beverage.",
"handle": "medusa-bottle",
"is_giftcard": false,
"images": [],
"thumbnail": "",
"options": [
{
"title": "Size"
}
],
"variants": [
{
"title": "One Size",
"prices": [
{
"currency_code": "eur",
"amount": 1000
}
],
"options": [
{
"value": "One Size"
}
],
"inventory_quantity": 100,
"manage_inventory": true
}
]
},
{
"title": "Medusa Shirt",
"subtitle": null,
"description": "Reimagine the feeling of a classic T-shirt. With our men's Basic cotton T-shirts, everyday essentials no longer have to be ordinary.",
"handle": "medusa-shirt",
"is_giftcard": false,
"images": [],
"thumbnail": "",
"options": [
{
"title": "Size"
}
],
"variants": [
{
"title": "S",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "S"
}
],
"inventory_quantity": 100,
"manage_inventory": true
},
{
"title": "M",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "M"
}
],
"inventory_quantity": 100,
"manage_inventory": true
},
{
"title": "L",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "L"
}
],
"inventory_quantity": 100,
"manage_inventory": true
},
{
"title": "XL",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "XL"
}
],
"inventory_quantity": 100,
"manage_inventory": true
}
]
}
]
}
"store": {
"currencies": ["eur"]
},
"users": [
{
"email": "[email protected]",
"password": "supersecret"
}
],
"regions": [
{
"id": "test-region",
"name": "Default Region",
"currency_code": "eur",
"tax_rate": 0,
"payment_providers": ["manual"],
"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": "Medusa Waterbottle",
"subtitle": null,
"description": "The ultimate way to stay hydrated throughout the day, this waterbottle can contain a liter of your favorite beverage.",
"handle": "medusa-bottle",
"is_giftcard": false,
"images": [],
"thumbnail": "https://medusa-public-images.s3.eu-west-1.amazonaws.com/bottle.png",
"options": [
{
"title": "Size"
}
],
"variants": [
{
"title": "One Size",
"prices": [
{
"currency_code": "eur",
"amount": 1000
}
],
"options": [
{
"value": "One Size"
}
],
"inventory_quantity": 100,
"manage_inventory": true
}
]
},
{
"title": "Medusa Shirt",
"subtitle": null,
"description": "Reimagine the feeling of a classic T-shirt. With our men's Basic cotton T-shirts, everyday essentials no longer have to be ordinary.",
"handle": "medusa-shirt",
"is_giftcard": false,
"images": [],
"thumbnail": "https://medusa-public-images.s3.eu-west-1.amazonaws.com/tshirt.png",
"options": [
{
"title": "Size"
}
],
"variants": [
{
"title": "S",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "S"
}
],
"inventory_quantity": 100,
"manage_inventory": true
},
{
"title": "M",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "M"
}
],
"inventory_quantity": 100,
"manage_inventory": true
},
{
"title": "L",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "L"
}
],
"inventory_quantity": 100,
"manage_inventory": true
},
{
"title": "XL",
"prices": [
{
"currency_code": "eur",
"amount": 1950
}
],
"options": [
{
"value": "XL"
}
],
"inventory_quantity": 100,
"manage_inventory": true
}
]
}
]
}

0 comments on commit 0949d67

Please sign in to comment.