You would deploy multiple services <https://cloud.google.com/appengine/docs/standard/php/microservices-on-app-engine>. You would deploy your WordPress site to a PHP service by following the Google Cloud WordPress Guide <https://github.com/GoogleCloudPlatform/php-docs-samples/tree/master/appengine/wordpress>, then deploy the other parts of your App Engine application to other services all under the same project.
Then when you want the services to share information, they can either send URLFetch requests <https://cloud.google.com/appengine/docs/standard/php/issue-requests#issuing_a_request_to_another_app_engine_app> to each other's URL addresses <https://cloud.google.com/appengine/docs/standard/php/designing-microservice-api#addressing_microservices> at their specific URL handlers <https://cloud.google.com/appengine/docs/standard/php/how-requests-are-handled#request-handlers>, or share information using an external data source <https://cloud.google.com/storage-options/> (like a Cloud SQL instance) that you give them both read/write access to. - An easier approach would be to deploy your Wordpress site to a Compute Engine instance. <https://console.cloud.google.com/launcher/details/click-to-deploy-images/wordpress?pli=1&_ga=2.29987068.-2131277425.1511971480> Then select the free tier <https://cloud.google.com/free/>'micro 0.2 CPUs' machine type to run your Wordpress site for free. Communication with your App Engine application would be the same as above (a data source and/or URLFetch where your Compute Engine instance would accept requests using Endpoints <https://cloud.google.com/endpoints/docs/openapi/>). -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/2d96eba4-0166-4fd8-a046-9dc1dbe6bf8a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
