How do I ran a container with a local devlopment taskhub #96
-
As a part of my development I want to monitor the local taskhub (in Azurite). What is the connection string in this case? |
Beta Was this translation helpful? Give feedback.
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: |
Beta Was this translation helpful? Give feedback.
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…