Skip to content

Commit

Permalink
docs: update example links
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Feb 25, 2019
1 parent 9628da7 commit 647e7e0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You can find the Garden documentation at [https://docs.garden.io](https://docs.g
Overview:
- [Basics](https://docs.garden.io/basics), for installation instructions, our quick start guide, and an overview of the main concepts around Garden.
- [Using Garden](https://docs.garden.io/using-garden), for features and usage, Garden configuration files, usage with remote clusters, and setting up hot reload.
- [Example Projects](https://docs.garden.io/examples) contains guides based on some of the [examples](https://github.com/garden-io/garden/tree/v0.9.0/examples).
- [Example Projects](https://docs.garden.io/examples) contains guides based on some of the [examples](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples).
- [Reference](https://docs.garden.io/reference), for the glossary, commands reference, configuration files reference, and template strings reference.
- [FAQs](https://docs.garden.io/faqs).

Expand All @@ -44,7 +44,7 @@ Overview:

## Examples

There are many examples of how to use Garden in a myriad of different ways in the [examples](https://github.com/garden-io/garden/tree/v0.9.0/examples) folder of our repository.
There are many examples of how to use Garden in a myriad of different ways in the [examples](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples) folder of our repository.

For written guides based on some of these examples, check out the [examples section](https://docs.garden.io/examples) of our documentation.

Expand Down
4 changes: 2 additions & 2 deletions docs/examples/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ In this example, we'll have a practical look at the main characteristics of a Ga
- Ports, endpoints, and health check settings
- Tests

This project contains four configuration files. [This one](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/garden.yml) for project-wide settings, and three separate ones for each of the modules: [`hello-container`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/services/hello-container/garden.yml), [`hello-function`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/services/hello-function/garden.yml), and [`hello-npm-package`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/libraries/hello-npm-package/garden.yml).
This project contains four configuration files. [This one](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/garden.yml) for project-wide settings, and three separate ones for each of the modules: [`hello-container`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/services/hello-container/garden.yml), [`hello-function`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/services/hello-function/garden.yml), and [`hello-npm-package`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/libraries/hello-npm-package/garden.yml).

_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world)._
_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world)._

# Configuring dependencies

Expand Down
4 changes: 2 additions & 2 deletions docs/examples/remote-sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Important concepts:
> Remote _module_: The remote source code for a single Garden module. In this case, the `garden.yml` config file is stored in the main project repository while the module code itself is in the remote repository.
_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/remote-sources](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/remote-sources)._
_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/remote-sources](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/remote-sources)._

## About

This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/vote)—except that in this case the services live in their own repositories. The repositories are:
This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/vote)—except that in this case the services live in their own repositories. The repositories are:

* [Database services](https://github.com/garden-io/garden-example-remote-sources-db-services) (contains the Postgres and Redis services)
* [Web services](https://github.com/garden-io/garden-example-remote-sources-web-services) (contains the Python Vote web service and the Node.js Result web service)
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/simple-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This tutorial assumes that you already have a running [installation of Garden](.

## Clone the example repo

The code for this tutorial can be found in our Github repository under the [examples directory](https://github.com/garden-io/garden/tree/v0.9.0/examples). We'll use the [simple-project-start](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/simple-project-start/) example and work our way from there. The final version is under [simple-project](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/simple-project).
The code for this tutorial can be found in our Github repository under the [examples directory](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples). We'll use the [simple-project-start](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/simple-project-start/) example and work our way from there. The final version is under [simple-project](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/simple-project).

First, let's clone the examples repo, change into the directory, and take a look inside:

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/tls-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This project shows how you can configure a TLS certificate to use for local deve
For the example to work you need to configure a local certificate authority (CA) on your computer for development. We'll use
[mkcert](https://github.com/FiloSottile/mkcert) for this purpose.

_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/local-tls](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/local-tls)._
_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/local-tls](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/local-tls)._

## Setup

Expand Down
2 changes: 1 addition & 1 deletion examples/remote-sources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Important concepts:
## About

This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/vote)—except that in this case the services live in their own repositories. The repositories are:
This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/vote)—except that in this case the services live in their own repositories. The repositories are:

* [Database services](https://github.com/garden-io/garden-example-remote-sources-db-services) (contains the Postgres and Redis services)
* [Web services](https://github.com/garden-io/garden-example-remote-sources-web-services) (contains the Python Vote web service and the Node.js Result web service)
Expand Down

0 comments on commit 647e7e0

Please sign in to comment.