AzureTRE/ui
Tim Allen 8d27d59549
Snyk 0924 Updates (#4093)
2024-10-23 13:57:38 +00:00
..
app Snyk 0924 Updates (#4093) 2024-10-23 13:57:38 +00:00
.gitignore UI MVP (#2001) 2022-06-09 15:47:40 +01:00
README.md Update "Azure AD" references to "Microsoft Entra ID" (#3873) 2024-04-11 08:50:09 +00:00

README.md

TRE UI

Please see the docs for a full overview and deployment instructions.

The UI was built using Create React App and Microsoft Fluent UI. Further details on this in the ./app/README.

Run the UI

  • Ensure deploy_ui=false is not set in your ./config.yaml file
  • In the root of the repo, run make tre-deploy. This will provision the necessary resources in Azure, build and deploy the UI to Azure blob storage, behind the App Gateway used for the API. The deployment process will also create the necessary config.json, using the config.source.json as a template.
  • In Microsoft Entra ID, locate the TRE Client Apps app (possibly called Swagger App). In the Authentication section add reply URIs for:
    • http://localhost:3000 (if wanting to run locally)
    • Your deployed App Url - https://{TRE_ID}.{LOCATION}.cloudapp.azure.com.

At this point you should be able to navigate to the web app in Azure, log in, and see your workspaces.

To run locally

  • cd ./ui/app
  • yarn start

After making changes to the code, redeploy to Azure by running make build-and-deploy-ui in the root of the dev container.