Skip to content

Commit a39df94

Browse files
author
Issac Trotts
committed
Make enable billing a distinct step.
1 parent 16b3f0e commit a39df94

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

appengine/standard/wordpress/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ gcloud config set project ${proj?}
2020
```sh
2121
gcloud alpha billing accounts list
2222
```
23-
Enable billing for your project:
23+
6. Enable billing for your project:
2424
```sh
2525
account=[ACCOUNT ID CHOSEN FROM THE LIST]
2626
gcloud alpha billing projects link --billing-account=${account?} ${proj?}
2727
```
2828

29-
6. Create the Cloud SQL instance and db:
29+
7. Create the Cloud SQL instance and db:
3030
```sh
3131
proj=[ID OF YOUR PROJECT] # if working in an existing project
3232
db_tier=db-f1-micro # See https://cloud.google.com/sql/pricing for more choices
@@ -39,7 +39,7 @@ gcloud sql users set-password root % --instance ${db_instance?} --password ${db_
3939
gcloud sql databases create ${db_name?} --instance=${db_instance?}
4040
```
4141

42-
7. Create and deploy the App Engine app:
42+
8. Create and deploy the App Engine app:
4343
```sh
4444
app=[DIR WHERE YOU WANT TO CREATE YOUR APP]
4545
mkdir -p ${app?}
@@ -58,13 +58,13 @@ gcloud sql instances patch ${db_instance?} --authorized-gae-apps ${proj?}
5858
gcloud app deploy
5959
```
6060

61-
8. Open the URL printed out by `gcloud app deploy` for your app and fill out
61+
9. Open the URL printed out by `gcloud app deploy` for your app and fill out
6262
the admin account setup form that appears.
6363

64-
9. A login page will appear for the admin interface for your WordPress app.
64+
10. A login page will appear for the admin interface for your WordPress app.
6565
Log into the admin interface.
6666

67-
10. Click `Plugins | Installed Plugins` on the menu on the left. In the
67+
11. Click `Plugins | Installed Plugins` on the menu on the left. In the
6868
Plugins page that appears, click `Activate` for the `WP-Stateless` plugin.
6969
Now your uploaded media will be stored on GCS and will be visible on your
7070
WordPress site.

0 commit comments

Comments
 (0)