Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing '$' to terminal commands. #1

Merged
merged 1 commit into from
Jan 31, 2019
Merged
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
6 changes: 3 additions & 3 deletions tutorials/run-wordpress-on-appengine-standard/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ name. We use `root` for the database user name.
1. Create a new Cloud SQL for MySQL Second Generation instance with the following
command:

gcloud sql instances create wordpress \
$ gcloud sql instances create wordpress \
--activation-policy=ALWAYS \
--tier=db-n1-standard-1

Expand All @@ -43,11 +43,11 @@ name. We use `root` for the database user name.

1. Create the database you want your WordPress site to use:

gcloud sql databases create wordpress --instance wordpress
$ gcloud sql databases create wordpress --instance wordpress

1. Change the root password for your instance:

gcloud sql users set-password root \
$ gcloud sql users set-password root \
--host=% \
--instance wordpress \
--password=YOUR_INSTANCE_ROOT_PASSWORD # Don't use this password!
Expand Down