Skip to content

Commit 58e6c6d

Browse files
committed
Update
1 parent 6b33585 commit 58e6c6d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Static web app invoking Azure functions
22

3-
This aim of this repo is to demonstrate how to deploy a [static web app](client/src/App.js) written in React to an Azure Storage Blob where static web app hosting has been enabled. The
4-
web app itself enables users to upload CSV files containing demographic and financial data about individuals. This data is to be transferred to an input storage blob by the use of an HTTP-triggered Azure Function.
5-
Once the CSV has been uploaded to the input blob, another, blob-triggered Azure Function calculates correlations between various variables, such as experience, state, gender, and income. The computed statistics are then stored in a separate ouput storage blob.
6-
These functions are defined in the python script [function_app.py](hvalfangst_function/function_app.py) - which is the main entrypoint of our Azure Function App instance.
3+
The aim of this repository is to demonstrate how to deploy a [static website](client/src/App.js) written in React to a [Storage Blob](https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-static-website). The
4+
hosted SPA allows users to upload CSV files containing demographic and financial data about individuals. The files are uploaded to a storage blob by calling an HTTP-triggered Azure Function with the appropriate output bindings.
5+
Once the CSV has been uploaded to the storage blob, another, blob-triggered Azure Function calculates correlations between various variables, such as experience, state, gender, and income.
6+
The computed statistics are then stored in a new blob container, which is used to serve the results to the user.
7+
These two functions are defined in the python script [function_app.py](hvalfangst_function/function_app.py) - which is the main entrypoint of our Azure Function App instance.
78

89
The associated Azure infrastructure is deployed with a script (more on that below).
910

0 commit comments

Comments
 (0)