Run these commands from the app/backend
folder.
yarn
(yarn install
) Install dependencies from package.json.yarn start
Starts the backend development server.yarn build
Builds the backend app to thebuild
directory.
Run these commands from the app/frontend
folder.
yarn
(yarn install
) Install dependencies from package.json.yarn start
Starts the frontend development server.yarn build
Builds the frontend app to thebuild/frontend
directory.
From app root folder do following steps in console:
cd app/frontend
yarn build
cd ../backend
yarn start
Then open http://localhost in your web browser.