|
@@ -55,13 +55,13 @@ Your local Medusa server is now running on port **9000**.
|
|
|
|
|
|
---
|
|
|
|
|
|
-To add seed data to your medusa store run the following command:
|
|
|
+To seed your medusa store run the following command:
|
|
|
|
|
|
```
|
|
|
medusa seed -f ./data/seed.json
|
|
|
```
|
|
|
|
|
|
-This command adds seed data to your database, 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 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.
|
|
|
|
|
|
## Setting up your store with Docker
|
|
|
|
|
@@ -114,7 +114,7 @@ To add seed data to your medusa store runnign with Docker, run this command in a
|
|
|
docker exec medusa-server medusa seed -f ./data/seed.json
|
|
|
```
|
|
|
|
|
|
-This will execute the same seed script as described above in the `medusa-server` Docker container.
|
|
|
+This will execute the previously described seed script in the running `medusa-server` Docker container.
|
|
|
|
|
|
## Try it out
|
|
|
|