X Tutup
Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 954 Bytes

File metadata and controls

13 lines (12 loc) · 954 Bytes

Cloud SQL sample for Google App Engine

This sample demonstrates how to use Cloud SQL on Google App Engine

Setup

Before you can run or deploy the sample, you will need to create a Cloud SQL instance

  1. Create a new user and database for the application. The easiest way to do this is via the Google Developers Console. Alternatively, you can use MySQL tools such as the command line client or workbench.

Running locally

  1. You will need to be running a local instance of MySQL.
  2. Update the connection string in appengine-web.xml with your local MySQL instance values.
    $ mvn clean appengine:devserver

Deploying

  1. Update the connection string in appengine-web.xml with your Cloud SQL instance values.
    $ mvn clean appengine:update
X Tutup