1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# Running the demo
## 1. Install Google Cloud SDK
### Linux
#### Install the Appengine SDK.
`$ sudo apt-get install google-cloud-sdk-app-engine-java`
### Mac
#### Install the Google Cloud SDK.
`$ brew install google-cloud-sdk`
#### Use GCloud CLI to install the Java Appengine
`$ gcloud components install app-engine-java`
## 2. Add IDE Plugin
### Intellij
Install [Cloud Code Plugin for Intellij](https://plugins.jetbrains.com/plugin/8079-cloud-code)
_If you have worked with the App Engine Plugin before,
please [migrate](https://cloud.google.com/code/docs/intellij/migrate)._
### Eclipse
Install [Cloud Code Plugin for Eclipse](https://marketplace.eclipse.org/content/google-cloud-tools-eclipse)
### Visual Studio Code
Install [Cloud Code Plugin for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=GoogleCloudTools.cloudcode&ssr=false#overview)
## 3. Run
Most IDEs should autodetect your configuration after installing the plugin (and
restart)

## (Optional) Run Natively
This is _not recommended_ with an IDE as you have to manage updating your
artifacts yourself, it does not support live reload
`$ mvn appengine:run`
|