Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
Style and usage edits. (#694)
Browse files Browse the repository at this point in the history
* Added missing '$' to terminal commands.

* Added missing colons to 'note' messages.

* Eliminated third person usage per style guide (https://developers.google.com/style/person)

* Edit

* Revert "Eliminated third person usage per style guide (https://developers.goo…"

* Removed period and added colon.
  • Loading branch information
willgoldby authored and ToddKopriva committed Jan 31, 2019
1 parent 69e570f commit c49f9d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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 All @@ -63,14 +63,14 @@ a new WordPress project or add the required configuration to an existing one.

$ composer require google/cloud-tools

> **Note** If you receive an error about extensions, install `phar` and `zip` PHP
> **Note**: If you receive an error about extensions, install `phar` and `zip` PHP
extensions and retry.

1. Now you can run the `wp-gae` command which is included in that package:

$ php vendor/bin/wp-gae

> **Note** You can also install `google/cloud-tools` [globally][composer-global],
> **Note**: You can also install `google/cloud-tools` [globally][composer-global],
which will allow you to execute the command `wp-gae` anywhere.

### Create a new WordPress project
Expand Down Expand Up @@ -99,7 +99,7 @@ Then your WordPress project will be ready to deploy to Google Cloud!

## Deploy to Google Cloud

`cd` into the root of your WordPress project.
`cd` into the root of your WordPress project:

$ cd my-wordpress-project

Expand Down

0 comments on commit c49f9d7

Please sign in to comment.