@flarehr/workflows-app 2.11.1 → 2.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist/workflows-app.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,14 @@ To start the development server, run the following commands:
|
|
|
18
18
|
npm start
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
### Instructions for local development with local backend
|
|
22
|
+
|
|
23
|
+
1. start your local Workflows Function app
|
|
24
|
+
1. set `data-backend-url` in `src\Workflows.UI\content\index.dev.html` to your local Function app URL, e.g. `http://localhost:7071`
|
|
25
|
+
1. uncomment the line in `src\Workflows.UI\src\Auth\AuthenticationService.fs`
|
|
26
|
+
1. uncomment and modify the header values in `sendWithRetry` function in `src\Workflows.UI\src\Workflows\Services\BackendService.fs`
|
|
27
|
+
1. start the workflows app
|
|
28
|
+
|
|
21
29
|
## Build
|
|
22
30
|
|
|
23
31
|
To build the project, run the following commands:
|