Skip to content

Commit

Permalink
ensure go example have dep ensure step (pulumi#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBoyle committed Mar 4, 2020
1 parent 7dd5f56 commit 03cde4e
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions aws-go-lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ This example creates a lambda that does a simple `ToUpper` on the string input a

After cloning this repo, run these commands from the working directory:

1. Restore your Go dependencies. This example currently uses [Dep](https://github.com/golang/dep) to do so:

```bash
$ dep ensure
```

1. Build the handler:

- For developers on Linux and macOS:
Expand Down
6 changes: 6 additions & 0 deletions aws-go-s3-folder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ For a detailed walkthrough of this example, see the tutorial [Static Website on

## Deploying and running the program

1. Restore your Go dependencies. This example currently uses [Dep](https://github.com/golang/dep) to do so:

```bash
$ dep ensure
```

1. Create a new stack:

```bash
Expand Down
6 changes: 6 additions & 0 deletions aws-go-webserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ To deploy your infrastructure, follow the below steps.

After cloning this repo, from this working directory, run these commands:

1. Restore your Go dependencies. This example currently uses [Dep](https://github.com/golang/dep) to do so:

```bash
$ dep ensure
```

1. Go is a compiled language, so you must first compile it:

```bash
Expand Down
6 changes: 6 additions & 0 deletions azure-go-webserver-component/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ defining a `WebServer` class, we can hide many details (see [here](./webserver.t

## Running the App

1. Restore your Go dependencies. This example currently uses [Dep](https://github.com/golang/dep) to do so:

```bash
$ dep ensure
```

1. Create a new stack:

```
Expand Down
6 changes: 6 additions & 0 deletions gcp-go-functions-raw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ To deploy your infrastructure, follow the below steps.

### Steps

1. Restore your Go dependencies. This example currently uses [Dep](https://github.com/golang/dep) to do so:

```bash
$ dep ensure
```

1. Create a new stack:

```
Expand Down
6 changes: 6 additions & 0 deletions gcp-go-functions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ To deploy your infrastructure, follow the below steps.

### Steps

1. Restore your Go dependencies. This example currently uses [Dep](https://github.com/golang/dep) to do so:

```bash
$ dep ensure
```

1. Create a new stack:

```
Expand Down

0 comments on commit 03cde4e

Please sign in to comment.