Steeltoe developer tool collection
Перейти к файлу
Chris Cheetham f2646c65ac [#34] Adds support for deploying apps 2018-11-06 11:16:53 -05:00
config [Closes #33] Removes all external calls to dotnet during CLI test run 2018-10-11 14:00:45 -04:00
scripts [Closes #13] Adds a service life cycle state machine 2018-09-18 09:59:27 -04:00
src [#34] Adds support for deploying apps 2018-11-06 11:16:53 -05:00
test [#34] Adds support for deploying apps 2018-11-06 11:16:53 -05:00
.appveyor.yml Adds CLI tests to CI builds 2018-10-11 14:03:07 -04:00
.gitattributes Initial checkin of tooling solution 2018-07-24 17:16:07 -04:00
.gitignore [#34] Adds support for deploying apps 2018-11-06 11:16:53 -05:00
.travis.yml Adds CLI tests to CI builds 2018-10-11 14:03:07 -04:00
CONTRIBUTING.adoc Ports docs to Asciidoc 2018-10-26 09:13:27 -04:00
LICENSE Initial commit 2018-07-24 11:40:30 -04:00
README.adoc Ports docs to Asciidoc 2018-10-26 09:13:27 -04:00
Tooling.sln [Closes #13] Adds a service life cycle state machine 2018-09-18 09:59:27 -04:00
builds.adoc Ports docs to Asciidoc 2018-10-26 09:13:27 -04:00

README.adoc

:toc: preamble
:toclevels: 2
:!toc-title:
:linkattrs:

= Steeltoe Tooling

Steeltoe developer tool collection

== Testing

.Run unit test suite
----
> scripts/unit-test

# Alternatively
> dotnet test test/Steeltoe.Tooling.Test
----

.Run CLI test suite
----
> scripts/cli-test

# Alternatively
> dotnet test test/Steeltoe.Cli.Test
----

== Install/Uninstall

.Install
----
> scripts/install

# Alternatively
> dotnet pack
> dotnet tool install -g --add-source src/Steeltoe.Cli/bin/Debug Steeltoe.Cli
----

.Uninstall
----
> dotnet tool uninstall -g Steeltoe.Cli
----