@@ -114,10 +114,10 @@ running):
114114
115115```
116116$ cd my-wordpress-project
117- $ php -S localhost:8000 -t wordpress wp.php
117+ $ vendor/bin/wp(.bat) server --path= wordpress
118118```
119119
120- Then access http://localhost:8000 / . Follow the installation steps,
120+ Then access http://localhost:8080 / . Follow the installation steps,
121121create the admin user and its password. Login to the Dashboard and
122122update if any of the plugins have update. I’m assuming that the local
123123network is secure here. If you think differently, maybe you can first
@@ -133,7 +133,7 @@ Use the shell script wrapper for deployment as follows:
133133```
134134$ sh deploy_wrapper.sh \
135135 gcloud preview app deploy \
136- --promote --stop-previous-version app.yaml
136+ --promote --stop-previous-version app.yaml cron.yaml
137137```
138138
139139Then access your site, use the username and the password you created
@@ -170,7 +170,14 @@ see the following Batcache stats in the HTML source:
170170Because the wp-content directory on the server is read-only, you have
171171to do this locally. Run WordPress locally and update plugins/themes in
172172the local Dashboard, then deploy, then activate them in the production
173- Dashboard.
173+ Dashboard. You can also use the ` wp-cli ` utility as follows:
174+
175+ ```
176+ # To update all the plugins
177+ $ vendor/bin/wp plugin update --all --path=wordpress
178+ # To update all the themes
179+ $ vendor/bin/wp theme update --all --path=wordpress
180+ ```
174181
175182### Remove plugins/themes
176183
0 commit comments