1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/tye.md
2021-10-06 23:56:45 -03:00

28 lines
508 B
Markdown

# tye
> Developer tool that makes developing, testing, and deploying microservices and distributed applications easier.
> More information: <https://github.com/dotnet/tye>.
- Scaffold a `tye.yaml` file representing the application:
`tye init`
- Run an application locally:
`tye run`
- Build an application's containers:
`tye build`
- Push an application's containers:
`tye push`
- Deploy an application to Kubernetes:
`tye deploy`
- Remove a deployed application from Kubernetes:
`tye undeploy`