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