ソースを参照

docs: add seed step in setup

Sebastian Rindom 4 年 前
コミット
43296d5214
1 ファイル変更5 行追加5 行削除
  1. 5 5
      README.md

+ 5 - 5
README.md

@@ -21,12 +21,12 @@ This repo provides the skeleton to get you started with using Medusa. Follow the
 - Copy the `.env.template` file to a `.env` file in the root directory
 - Setup a Stripe account and add your API key and webhook secret to your `.env`
 - Setup a Sendgrid account and add your API key to your `.env`
-- Install all dependencies `yarn`
-- Create a local postgres database using `psql -h localhost -c 'create database "medusa-development";'`
-- Migrate the database `medusa migrations run`
-- Run `medusa develop`
+- Install all dependencies `$ yarn`
+- Create a local postgres database using `$ psql -h localhost -c 'create database "medusa-development";'`
+- Migrate and seed the database `$ yarn seed`
+- Run `$ medusa develop`
 
 Your local Medusa server is now running on port 9000. 
 
-Visit docs.medusa-commerce.com for further guides.
+Visit [docs.medusa-commerce.com](https://docs.medusa-comerce.com) for further guides.