I’m constantly having to search for the local development storage endpoint Uris when I create a new Azure storage project from scratch, not to mention the account name and shared key, so I’m posting them here for my own reference. Hopefully others will also find it useful.
1: <ConfigurationSettings>
2: <Setting name="AccountName"
3: value="devstoreaccount1"/>
4: <Setting name="AccountSharedKey"
5: value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/>
6: <Setting name="BlobStorageEndpoint"
7: value="http://127.0.0.1:10000/"/>
8: <Setting name="QueueStorageEndpoint"
9: value="http://127.0.0.1:100001/"/>
10: <Setting name="TableStorageEndpoint"
11: value="http://127.0.0.1:10002/"/>
12: </ConfigurationSettings>