Awesome
appengine-bottle-example
Example for quickly bootstrapping a Google App Engine project with Bottle Python web framework.
Preliminaries
You need to install Google App Engine SDK in your computer, and make sure it is already in your PATH
variable.
Mac
- Download Google App Engine SDK for Mac and install it.
- Launch the
/Applications/GoogleAppEngineLauncher.app
first time for extracting the SDK into your system - Put
/usr/local/google_appengine
into yourPATH
. (You can set it in your~/.profile
)
Linux
- Download Google App Engine SDK for Linux
- Extract it and put
google_appengine
in wherever you like (For example, I put it in~/opt
) - Add
/path/to/google_appengine
intoPATH
. (In my case, it's~/opt/google_appengine
)
HOW DO I KNOW I AM DOING IT RIGHT?
Open your terminal, and just type dev_appserver
, if it didn't show Command not found
but the manual of that command, than you're doing it right ;)