microsoft / AzUrlShortener

An simple and easy Url Shortener
MIT License
519 stars 561 forks source link

Missing URL tables #441

Closed Ismael-Castillo closed 1 year ago

Ismael-Castillo commented 1 year ago

Once deployed and inspecting in Azure Storage Explorer, only able to see $Metrics tables but no URL tables. Did I miss a step?

Ismael-Castillo commented 1 year ago

I was able to find answer in discussions post. For anyone with same questions, tables are created if they don't yet exist.

FBoucher commented 1 year ago

This is correct. Tables are created at the first call when they don't exist.

FBoucher commented 1 year ago

Updated

FBoucher commented 1 year ago

Once the deployment of AzUrlShortener is finished, Validate the deployment This will create the table UrlsDetails. It will be empty but it will be present.

Then you can create your first Short URL by following the instruction here Create a new Short URL

The table with the clicks will be automatically created when a link will be used.

Ismael-Castillo commented 1 year ago

Thank you. Great project.