Skip to content

Commit

Permalink
docs: remove references to garden-examples repo
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald authored and eysi09 committed Sep 6, 2018
1 parent 6a153b8 commit 9349203
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion docs/examples/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Examples

The source code for the examples in this section can be found in our Github [examples repository](https://github.com/garden-io/garden-examples/).
The source code for the examples in this section can be found in our Github repository under the
[examples directory](https://github.com/garden-io/garden/examples/).

* [Simple Project](./simple-project.md)
6 changes: 3 additions & 3 deletions docs/examples/simple-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ This tutorial assumes that you have already have a running [installation of Gard

## Clone the example repo

The code for this tutorial can be found on Github in our [examples repo](https://github.com/garden-io/garden-examples). We'll use the [simple-project-start](https://github.com/garden-io/garden-examples/simple-project-start) example and work our way from there. The complete version is under [simple-project](https://github.com/garden-io/garden-examples/simple-project).
The code for this tutorial can be found on Github in our [examples repo](https://github.com/garden-io/garden/examples). We'll use the [simple-project-start](https://github.com/garden-io/garden/examples/simple-project-start) example and work our way from there. The complete version is under [simple-project](https://github.com/garden-io/garden/examples/simple-project).

First, let's clone the examples repo, change into the directory, and take a look inside:
```sh
$ git clone https://github.com/garden-io/garden-examples.git
$ cd garden-examples/simple-project-start
$ git clone https://github.com/garden-io/garden/examples.git
$ cd garden/examples/simple-project-start
$ tree .
.
└── services
Expand Down
6 changes: 3 additions & 3 deletions docs/introduction/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,15 @@ To later upgrade to the newest version, run `npm install -g -U garden-cli`.

## Using the CLI

With the CLI installed, we can now try out a few commands using the [hello-world](https://github.com/garden-io/garden-examples/tree/master/simple-project) project from our Github [examples repository](https://github.com/garden-io/garden-examples). The example consists of a a couple of simple services.
With the CLI installed, we can now try out a few commands using the [hello-world](https://github.com/garden-io/garden/examples/tree/master/simple-project) project from our Github [examples repository](https://github.com/garden-io/garden/examples). The example consists of a a couple of simple services.

_Note: check if Kubernetes is running with `kubectl version`. You should see both a `Client Version` and a `Server Version` in the response. If not, please start it up before proceeding._

Clone the repo and change into the `hello-world` directory:

```sh
$ git clone https://github.com/garden-io/garden-examples.git
$ cd garden-examples/hello-world
$ git clone https://github.com/garden-io/garden/examples.git
$ cd garden/examples/hello-world
```

First, let's check the environment status by running the following from the project root:
Expand Down

0 comments on commit 9349203

Please sign in to comment.