diff --git a/README.md b/README.md index 753e415..88e922d 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ To learn about each quickstart, we have a dedicated article about it at the ZIO First, open the console and clone the project using `git` (or you can simply download the project) and then to the directory of the quickstart you want to run, e.g. `zio-quickstart-restful-webservice`: -```scala -git clone git@github.com:zio/zio-quickstarts.git -cd zio-quickstarts/zio-quickstart-restful-webservice +```bash +$ git clone https://github.com/zio/zio-quickstarts.git +$ cd zio-quickstarts/zio-quickstart-restful-webservice ``` Once you are inside the project directory, run the application: -```scala -sbt run +```bash +$ sbt run ``` diff --git a/zio-quickstart-restful-webservice/README.md b/zio-quickstart-restful-webservice/README.md index 3abb305..807f50f 100644 --- a/zio-quickstart-restful-webservice/README.md +++ b/zio-quickstart-restful-webservice/README.md @@ -16,13 +16,13 @@ We have a dedicated article about this quickstart at the ZIO documentation websi First, open the console and clone the project using `git` (or you can simply download the project) and then change the directory: -```scala -git clone git@github.com:zio/zio-quickstart-restful-webservice.git -cd zio-quickstart-restful-webservice +```bash +$ git clone https://github.com/zio/zio-quickstarts.git +$ cd zio-quickstarts/zio-quickstart-restful-webservice ``` Once you are inside the project directory, run the application: -```scala -sbt run +```bash +$ sbt run ```