@@ -20,13 +20,13 @@ gcloud config set project ${proj?}
2020``` sh
2121gcloud alpha billing accounts list
2222```
23- Enable billing for your project:
23+ 6 . Enable billing for your project:
2424``` sh
2525account=[ACCOUNT ID CHOSEN FROM THE LIST]
2626gcloud 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
3131proj=[ID OF YOUR PROJECT] # if working in an existing project
3232db_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_
3939gcloud 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
4444app=[DIR WHERE YOU WANT TO CREATE YOUR APP]
4545mkdir -p ${app?}
@@ -58,13 +58,13 @@ gcloud sql instances patch ${db_instance?} --authorized-gae-apps ${proj?}
5858gcloud 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
6262the 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.
6565Log 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
6868Plugins page that appears, click ` Activate ` for the ` WP-Stateless ` plugin.
6969Now your uploaded media will be stored on GCS and will be visible on your
7070WordPress site.
0 commit comments