2.1 KiB
Getting Started
Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with minimal configuration.
Installing tye
-
Install .NET Core 3.1.
-
Install tye via the following command:
dotnet tool install -g Microsoft.Tye --version "0.1.0-alpha.20209.5"OR if you already have Tye installed and want to update:
dotnet tool update -g Microsoft.Tye --version "0.1.0-alpha.20209.5" -
Verify the installation was complete by running:
tye --version > 0.1.0-alpha.20209.5+e3fc0045bd1e5913da935241874761929f1e8465
Next steps
- Once tye is installed, continue to the Basic Tutorial.
- Check out additional samples for more advanced concepts, such as using redis, rabbitmq, and service discovery.
Working with CI builds
This will install the newest available build from our CI.
dotnet tool install -g Microsoft.Tye --version "0.2.0-*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json
If you already have a build installed and you want to update, replace install with update:
dotnet tool update -g Microsoft.Tye --version "0.2.0-*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json
💡 Note that the version numbers for our CI builds and released packages will usually be different.
If you are using CI builds of Tye we also recommend using CI builds of our libraries as well with the matching version. To add the dotnet-core package source add a NuGet.config to your repository or solution directory.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="dotnet5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>