How to install google app engine
This blog post is about how to install GAE on kali linux & how to setup google app engine in intelliJ IDE for development, the procedure is same for any debian linux like ubuntu.
Add package URLs to sources
First step– we are gonna add the package urls to our sourcelist located at /etc/apt/sources.list
echo "deb http://packages.cloud.google.com/apt cloud-sdk-jessie main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
Add Key
curl http://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
Install
Let’s install google cloud sdk this is a pre-requisite,
sudo apt-get update sudo apt-get install google-cloud-sdk
Now, lets also install additional gcomponents for python.
sudo apt-get install google-cloud-sdk-app-engine-python sudo apt-get install google-cloud-sdk-app-engine-python-extras
Setting up intelliJ
Create/Import a GAE project in pycharm, File -> settings -> Language & Frameworks & update SDK directory to the below directory
/usr/lib/google-cloud-sdk/platform/google_appengine
Also, please checkout other blog posts on installations here