Skip to content

Commit

Permalink
Updated readme to use dotnet watch command
Browse files Browse the repository at this point in the history
  • Loading branch information
ddieruf committed Mar 3, 2020
1 parent 860ae06 commit 0d6e033
Showing 1 changed file with 6 additions and 25 deletions.
31 changes: 6 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,19 @@
It is built using [Blazor](https://docs.microsoft.com/en-us/aspnet/core/blazor/) in Visual Studio.

## Install Dependencies
Requires .NET Core SDK 3.0
Requires .NET Core SDK 3.1

```bash
> dotnet new -i Microsoft.AspNetCore.Blazor.Templates::3.0.0-preview9.19465.2
> dotnet new -i Microsoft.AspNetCore.Blazor.Templates
```

## Local testing of Steeltoe site

This will run the site locally.
This will run the site locally and refresh when a change is made to the razor pages.

```bash
> cd src/Server
> dotnet run
> cd src/Client
> dotnet watch run
```

Visit site locally at [http://localhost:52198](http://localhost:52198)

<!-- ### Instructions for Updating Documentation Staging Site
All documentation will be updated in the `dev` branch. Once the documentation looks correct in the [Steeltoe Staging](https://steeltoe-staging.cfapps.io/) site, the dev branch should be merged into `master`. This will be the production site at [steeltoe.io](https://steeltoe.io)
### Branches and Builds
#### Branch Build (1.x)
The `1.x` branch will build with `dev` and `master` branches. There is no staging for the 1.x branch, so all commits will kick off a production build or staging build. The 1.x documentation will be available at [Steeltoe Staging 1.x](https://steeltoe-staging.cfapps.io/1x) and [Steeltoe.io 1.x](https://steeltoe.io/1x)
#### Development Build (dev)
Any commit to the `dev` branch is automatically built and added to the [Steeltoe Staging](https://steeltoe-staging.cfapps.io/) site.
#### Production Build (master)
***Important:*** Pushing the to the remote `master` branch will update the main [Steeltoe.io](https://steeltoe.io/) site.
Any commit to the `master` branch is automatically built and added to the [Steeltoe.io](https://steeltoe.io/) site. -->


Visit site locally at [http://localhost:8080](http://localhost:8080)

0 comments on commit 0d6e033

Please sign in to comment.