Local Development
Run the UI Locally
After deploying to your AWS account, start the UI locally by running:
npm run start-ui:dev
Visit 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:dev
npm run start-ui-local-api:dev
Visit localhost:3001 to view your local web app.