How do I ran a container with a local devlopment taskhub #96
Answered
by
scale-tone
StefanGlawing
asked this question in
Q&A
|
As a part of my development I want to monitor the local taskhub (in Azurite). What is the connection string in this case? |
Answered by
scale-tone
Mar 9, 2023
Replies: 1 comment
|
Hi @StefanGlawing , the so called well-known connection string for Azurite is The HTTP ports specified there are the default ones. If for whatever reason you're running Azurite on different ports, then those need to be adjusted accordingly. If you're using DfMon as a VsCode ext, then it should show you your Azurite-hosted Task Hubs automatically: For that, of course, Azurite should be running, and its ports should match the ports in the connection string. By default VsCode ext uses default ports, as above. You can adjust them via this setting: |
0 replies
Answer selected by
scale-tone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Hi @StefanGlawing , the so called well-known connection string for Azurite is
UseDevelopmentStorage=true, or in its expanded form it is:The HTTP ports specified there are the default ones. If for whatever reason you're running Azurite on different ports, then those need to be adjusted accordingly.
If you're using DfMon as a VsCode ext, then it should show you your Azurite…