DurableFunctionsMonitor/durablefunctionsmonitor.react
Konstantin Lepeshenkov 1aea75c270 version 6.5.2-beta1 2024-11-02 18:32:11 +01:00
..
.github/workflows E2e tests (#114) 2023-06-30 21:09:15 +02:00
public #164 2024-03-02 23:52:21 +01:00
src Fixed NRE on the Details page caused by the recently added BatchOpsDialog (#203) 2024-06-29 17:41:07 +02:00
tests more e2e tests 2024-03-09 16:05:02 +01:00
.env made DurableFunctionsMonitor.DotNetIsolated hostable at any path, including root 2024-01-07 16:13:02 +01:00
.gitignore E2e tests (#114) 2023-06-30 21:09:15 +02:00
README.md Update README.md 2022-01-05 17:43:00 +01:00
copy-build-artifacts.js made DurableFunctionsMonitor.DotNetIsolated hostable at any path, including root 2024-01-07 16:13:02 +01:00
disable-webpack-chunking.js migrated to mermaid 10.2.4 2023-07-03 21:34:51 +02:00
package-lock.json Implemented batch operations (#169) (#196) 2024-06-26 23:21:15 +02:00
package.json version 6.5.2-beta1 2024-11-02 18:32:11 +01:00
playwright.config.ts E2e tests (#114) 2023-06-30 21:09:15 +02:00
tsconfig.json moved sources from https://github.com/scale-tone/DurableFunctionsMonitor 2021-11-25 22:53:11 +01:00
tslint.json moved sources from https://github.com/scale-tone/DurableFunctionsMonitor 2021-11-25 22:53:11 +01:00

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.