Removing versioning note from sample README

This commit is contained in:
Ori Zohar 2020-08-13 10:55:45 -07:00
parent 749774906c
commit 5005fdfb6c
3 changed files with 3 additions and 5 deletions

View File

@ -37,7 +37,7 @@ If you want to contribute a sample to this repo, please see the sample [contribu
Samples should follow these high-level guiding principles:
- Samples should have a meaningful name that helps users of this repository understand what this sample is about
- Sample code should be complete (i.e. no major code additions should be needed to make the sample work)
- Each sample should be include a *README.md* file clearly explaining what the sample does and how to run it including prerequisites. This file should also include details on the Dapr core version this sample is compatible with (see below)
- Each sample should include a *README.md* file clearly explaining what the sample does and how to run it including prerequisites. This file should also include details on the Dapr core version this sample is compatible with (see below)
- It is highly recommended to include scripts and automation to allow users to easily run samples which require complex setup and multiple steps to run.
Sample info section at the top of the main sample README should follow the following template

View File

@ -28,9 +28,8 @@ Setting up this sample requires you to have several components installed:
### Clone the sample repository
Clone this sample repository to your local machine:
```bash
git clone [-b <dapr_version_tag>] https://github.com/dapr/samples.git
git clone https://github.com/dapr/samples.git
```
> **Note**: See https://github.com/dapr/samples#supported-dapr-runtime-version for supported tags. Use `git clone https://github.com/dapr/samples.git` when using the edge version of dapr runtime.
### Run the setup script

View File

@ -28,10 +28,9 @@ Follow [instructions](https://github.com/dapr/docs/blob/master/getting-started/e
Now that Dapr has been setup locally, clone the repo, then navigate to the `hello-dapr-slim` sample:
```bash
git clone [-b <dapr_version_tag>] https://github.com/dapr/samples.git
git clone https://github.com/dapr/samples.git
cd samples/hello-dapr-slim
```
> **Note**: See https://github.com/dapr/samples#supported-dapr-runtime-version for supported tags. Use `git clone https://github.com/dapr/samples.git` when using the edge version of dapr runtime.
In the `app.js` you'll find a simple `express` application, which exposes a single route and handler.