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 min
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

983 B

tye build

Name

tye build - Builds the application's containers.

Synopsis

tye build [-?|-h|--help] [-v|--verbosity <Debug|Info|Quiet>] [<PATH>]

Description

The tye build command will build all of an application's project services into containers without deploying or pushing the containers remotely.

This command is useful for testing that all projects successfully build.

Arguments

PATH

The path to either a file or directory to execute tye build on.

If a directory path is specified, tye build will default to using these files, in the following order:

  • tye.yaml
  • *.sln
  • *.csproj/*.fsproj

Options

  • -v|--verbosity <Debug|Info|Quiet>

    The verbosity of logs emitted by tye build. Defaults to Info.

Examples

  • Build an application from the current directory:

    tye build
    
  • Build an application, increasing log verbosity to Debug.

    tye build --verbosity Debug