From e37abb7339c04bb9d6bad6e962c478b2b94a299b Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Wed, 9 Sep 2020 14:18:17 +0200 Subject: [PATCH] docs: added instructions for running backend to getting started (#2360) --- docs/getting-started/create-an-app.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/getting-started/create-an-app.md b/docs/getting-started/create-an-app.md index fe22935002..cbbd474bd0 100644 --- a/docs/getting-started/create-an-app.md +++ b/docs/getting-started/create-an-app.md @@ -80,3 +80,12 @@ yarn start _When `yarn start` is ready it should open up a browser window displaying your app, if not you can navigate to `http://localhost:3000`._ + +In most cases you will want to start the backend as well, as it is required for +the catalog to work, along with many other plugins. + +To start the backend, open a separate terminal session and run the following: + +```bash +yarn --cwd packages/backend start +```