Launchpad is a .NET Core CLI tool used to bootstrap repositories from project templates. Templates are NuGet packages with content files that may contain variable placeholders. Read more about template structure here.
- Install .NET Core 2.1+ runtime here
- Execute this command:
dotnet tool install -g Vostok.Launchpad
To update launchpad to the latest version, use this command: dotnet tool update -g Vostok.Launchpad
Launch the tool without parameters (launchpad
) to get help and find out about all available commands.
zsh users need to add following line to ~/.zshrc (see https://github.com/dotnet/cli/issues/9321#issuecomment-390720940):
export PATH="$HOME/.dotnet/tools:$PATH"