From dec205f38e9376467373dd8581967dd129d6d193 Mon Sep 17 00:00:00 2001 From: Sebastian Rindom Date: Tue, 23 Nov 2021 10:04:27 +0100 Subject: [PATCH] Update quick-start.md (#838) --- docs/content/quickstart/quick-start.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/content/quickstart/quick-start.md b/docs/content/quickstart/quick-start.md index fcc16e9475..6a97b3aee2 100644 --- a/docs/content/quickstart/quick-start.md +++ b/docs/content/quickstart/quick-start.md @@ -21,6 +21,8 @@ This quickstart is intended for experienced developers, that are accustomed with curl localhost:9000/store/products | python -m json.tool ``` +We have a prebuilt admin dashboard that you can use to configure and manage your store find it here: [Medusa Admin](https://github.com/medusajs/admin) + After these four steps and only a couple of minutes, you now have a complete commerce engine running locally. You may now explore [the documentation](https://docs.medusa-commerce.com/api) to learn how to interact with the Medusa API. You may also add [plugins](https://github.com/medusajs/medusa/tree/master/packages) to your Medusa store by specifying them in your `medusa-config.js` file. ## What's next? @@ -32,6 +34,8 @@ We have created two starters for you that can help you lay a foundation for your - [Nextjs Starter](https://github.com/medusajs/nextjs-starter-medusa) - [Gatsby Starter](https://github.com/medusajs/gatsby-starter-medusa) +> Note: Medusa runs on port 9000 by default and the storefront starters are both configured to run on port 8000. If you wish to run your storefront starter on another port you should update your CORS settings in your project's `medusa-config.js`. +