Local Development
Run the UI Locally
After deploying to your AWS account, start the UI locally by running:
npm run start-ui:devVisit localhost:3001 to view your local web app.
Run the UI and API Locally
If you want to run your UI against a local version of your API, instead run these two commands in separate terminals:
npm run start-api:devnpm run start-ui-local-api:devVisit localhost:3001 to view your local web app.