Google Cloud SQL
To create a Google Cloud SQL database, run gcloud sql instances create INSTANCE_NAME_HERE –activation-policy=ALWAYS –tier=db-n1-standard-1 INSTANCE_NAME_HERE = this can be anything, lowercase letters, 0-9, for identification purpose only. db-n1-standard-1 => this is size of the server, you can change it as needed. To create a Database, run gcloud sql databases create DB_NAME_HERE –instance INSTANCE_NAME_HERE To … Read more