- Importing/Exporting Google Cloud Datastore between Cross-ProjectsThis post explains how to copy a Datastore entity from Project A to Project B in Google Cloud Platform. The steps needed to complete this task are the following: Creating a Cloud Storage bucket in Project A Adding permissions to the service account that will perform the operation. I will… Read more: Importing/Exporting Google Cloud Datastore between Cross-Projects
- Google Cloud SDK Configurations (gcloud config)Listing all existing configurations: gcloud config configurations list Listing properties of an activated configuration: gcloud config list Activating a different configuration: gcloud config configurations activate <CONFIGURATION_NAME>
- Deploy ASP.NET Core 2.1 App to GCP APP EngineTo deploy your application to Google Cloud Platform’s App Engine you will need to first add an app.yaml file, publish your .NET Core and have the Cloud SDK installed and setup with your Project ID to use gcloud commands. Create an app.yaml file at the root of your startup project.… Read more: Deploy ASP.NET Core 2.1 App to GCP APP Engine