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
4 changes: 2 additions & 2 deletions functions/imagemagick/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ Functions for your project.

1. Create a Cloud Storage Bucket:

gsutil mb gs://YOUR_INPUT_BUCKET_NAME
gcloud storage buckets create gs://YOUR_INPUT_BUCKET_NAME

This storage bucket is used to upload images for the function to check.

1. Create a second Cloud Storage Bucket:

gsutil mb gs://YOUR_OUTPUT_BUCKET_NAME
gcloud storage buckets create gs://YOUR_OUTPUT_BUCKET_NAME
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There's a minor indentation inconsistency in this code block. It's indented with 9 spaces, while the block for the first bucket creation on line 24 uses 8 spaces. For consistency in the documentation, it would be better to use 8 spaces here as well.

Suggested change
gcloud storage buckets create gs://YOUR_OUTPUT_BUCKET_NAME
gcloud storage buckets create gs://YOUR_OUTPUT_BUCKET_NAME


This second storage bucket is used to store blurred images. (Un-blurred images will not be saved to this bucket.)

Expand Down
4 changes: 2 additions & 2 deletions functions/v2/imagemagick/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ Functions for your project.

1. Create a Cloud Storage Bucket:

gsutil mb gs://YOUR_INPUT_BUCKET_NAME
gcloud storage buckets create gs://YOUR_INPUT_BUCKET_NAME

This storage bucket is used to upload images for the function to check.

1. Create a second Cloud Storage Bucket:

gsutil mb gs://YOUR_OUTPUT_BUCKET_NAME
gcloud storage buckets create gs://YOUR_OUTPUT_BUCKET_NAME

This second storage bucket is used to store blurred images. (Images that are **not** blurred will not be saved to this bucket.)

Expand Down