Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion www/content/docs/aws/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Two CloudFront Functions:
`hedgerules deploy` handles the CloudFront Functions and KVS for you:

```sh
hedgerules deploy --site public/
hedgerules deploy -output-dir public/
```

This command:
Expand Down
4 changes: 2 additions & 2 deletions www/content/docs/deployment/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ aws cloudformation deploy \
hugo

# Stage 3: create functions + sync edge data
hedgerules deploy --site public/
hedgerules deploy -output-dir public/

# Stage 4: distribution (references functions from stage 3)
aws cloudformation deploy \
Expand All @@ -195,7 +195,7 @@ See [`examples/micahrlweb/`](https://github.com/mrled/hedgerules/tree/master/exa

```sh
hugo # Stage 2
hedgerules deploy --site public/ # Stage 3
hedgerules deploy -output-dir public/ # Stage 3
hugo deploy --target mysite # Stage 5
```

Expand Down
2 changes: 1 addition & 1 deletion www/content/docs/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ This produces `public/` with `_hedge_headers.json` and `_hedge_redirects.txt` al
## 5. Deploy edge rules

```sh
hedgerules deploy --site public/
hedgerules deploy -output-dir public/
```

This creates (or updates) the CloudFront Functions and KVS entries for redirects and headers.
Expand Down