I have a storage account in Azure where, in particular, I have a container storing some data, with new records added every now and then.
I would like to have a very simple website (web-app?) where users could see:
- in the most basic version - simply the whole content of this container (i.e. all records)
- in a less basic version - e.g. top 10 most recent records (they have a timestamp) from this container
Intuition tells me that at least for the 1st variant there should be something pretty much "ready" by default in Azure? Whereas I expect the 2nd variant requires some coding.
Could anyone please advise on a quick win here?