Skip to content

Commit

Permalink
fix: clean up field usage in example projects
Browse files Browse the repository at this point in the history
Cleaned up the usage of command / hotReloadCommand / hotReloadArgs in
example projects.
  • Loading branch information
thsig committed Feb 15, 2019
1 parent 8e65198 commit 7ed2da3
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion examples/gatsby-hot-reload/garden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ module:
services:
- name: website
args: [npm, run, dev]
hotReloadCommand: [npm, run, dev]
env:
GATSBY_WEBPACK_PUBLICPATH: /
ports:
Expand Down
2 changes: 1 addition & 1 deletion examples/hot-reload/node-service/garden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module:
services:
- name: node-service
args: [npm, start]
hotReloadCommand: [npm, run, dev]
hotReloadArgs: [npm, run, dev]
ports:
- name: http
containerPort: 8080
Expand Down
1 change: 0 additions & 1 deletion examples/simple-project/services/node-service/garden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module:
type: container
services:
- name: node-service
command: [npm, start]
ports:
- name: http
containerPort: 8080
Expand Down
1 change: 0 additions & 1 deletion examples/vote-helm/vote/garden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module:
serviceResource:
kind: Deployment
containerModule: vote-image
hotReloadArgs: [npm, run, serve]
dependencies:
- api
values:
Expand Down
1 change: 0 additions & 1 deletion examples/vote/services/vote/garden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ module:
services:
- name: vote
args: [npm, run, serve]
hotReloadCommand: [npm, run, serve]
ports:
- name: http
containerPort: 8080
Expand Down

0 comments on commit 7ed2da3

Please sign in to comment.