Skip to content

Local Development

Run the UI Locally

After deploying to your AWS account, start the UI locally by running:

Terminal window
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:

Run API Locally
npm run start-api:dev
Run UI Locally
npm run start-ui-local-api:dev

Visit localhost:3001 to view your local web app.