DurableFunctionsMonitor/durablefunctionsmonitor.react
Konstantin Lepeshenkov 1a48cc22e9
v6.5 (#204)
2024-06-30 14:54:53 +02:00
..
.github/workflows
public
src Fixed NRE on the Details page caused by the recently added BatchOpsDialog (#203) 2024-06-29 17:41:07 +02:00
tests
.env
.gitignore
README.md
copy-build-artifacts.js
disable-webpack-chunking.js
package-lock.json Implemented batch operations (#169) (#196) 2024-06-26 23:21:15 +02:00
package.json v6.5 (#204) 2024-06-30 14:54:53 +02:00
playwright.config.ts
tsconfig.json
tslint.json

README.md

DurableFunctionsMonitor.React

Web UI for DurableFunctionsMonitor. React+MobX+TypeScript+Material UI.

How to compile and run locally

  • Run the backend locally and make sure it runs under http://localhost:7072 (by opening it with your browser).
  • Create a .env.development.local file with the following line in it:
    REACT_APP_BACKEND_BASE_URI=http://localhost:7072
    
  • Run npm install
  • Run npm run start. This should start the development server at http://localhost:3000 with UI sources running under it. This UI will communicate with the backend running at http://localhost:7072.

How to build

A custom build command is included - npm run build-and-copy. This command will build the project and then copy the resulting artifacts into durablefunctionsmonitor.dotnetbackend\DfmStatics folder.