|
@@ -1,6 +1,6 @@
|
|
|
<p align="center">
|
|
|
<a href="https://www.medusa-commerce.com">
|
|
|
- <img alt="Medusa" src="https://user-images.githubusercontent.com/7554214/129161578-19b83dc8-fac5-4520-bd48-53cba676edd2.png" width="100" />
|
|
|
+ <img alt="Medusa" src="https://i.imgur.com/USubGVY.png" width="100" />
|
|
|
</a>
|
|
|
</p>
|
|
|
<h1 align="center">
|
|
@@ -22,6 +22,11 @@ This repo provides the skeleton to get you started with using <a href="https://g
|
|
|
<a href="https://twitter.com/intent/follow?screen_name=medusajs">
|
|
|
<img src="https://img.shields.io/twitter/follow/medusajs.svg?label=Follow%20@medusajs" alt="Follow @medusajs" />
|
|
|
</a>
|
|
|
+ <p align="center">
|
|
|
+ <a href="https://heroku.com/deploy?template=https://github.com/medusajs/medusa-starter-default/tree/feat/deploy-heroku">
|
|
|
+ <img src="https://www.herokucdn.com/deploy/button.svg" alt="Deploy">
|
|
|
+ </a>
|
|
|
+ </p>
|
|
|
</p>
|
|
|
|
|
|
## Prerequisites
|
|
@@ -61,7 +66,7 @@ To seed your medusa store run the following command:
|
|
|
medusa seed -f ./data/seed.json
|
|
|
```
|
|
|
|
|
|
-This command seeds your database with some sample datal to get you started, including a store, an administrator account, a region and a product with variants. What the data looks like precisely you can see in the `./data/seed.json` file.
|
|
|
+This command seeds your database with some sample data to get you started, including a store, an administrator account, a region and a product with variants. What the data looks like precisely you can see in the `./data/seed.json` file.
|
|
|
|
|
|
## Setting up your store with Docker
|
|
|
|
|
@@ -90,7 +95,7 @@ This command seeds your database with some sample datal to get you started, incl
|
|
|
|
|
|
- Run your project
|
|
|
|
|
|
- When running your project the first time `docker-compose` should be run with the `build` flag to build your contianer locally:
|
|
|
+ When running your project the first time `docker compose` should be run with the `build` flag to build your container locally:
|
|
|
|
|
|
```
|
|
|
docker-compose up --build
|
|
@@ -108,7 +113,7 @@ Your local Medusa server is now running on port **9000**.
|
|
|
|
|
|
---
|
|
|
|
|
|
-To add seed data to your medusa store runnign with Docker, run this command in a seperate terminal:
|
|
|
+To add seed data to your medusa store running with Docker, run this command in a seperate terminal:
|
|
|
|
|
|
```
|
|
|
docker exec medusa-server medusa seed -f ./data/seed.json
|