October 2015
Intermediate to advanced
368 pages
8h 49m
English
When you are developing a web application that has to be hosted on Google App Engine, it has to have a certain structure so that the platform can deploy it. A minimal App Engine application is composed of an application manifest file called app.yaml and at least one script / code file that handles and responds to requests. The app.yaml file defines the application ID, version of the application, required runtime environment and libraries, static resources, if any, and the set of URLs along with their mappings to the actual code files that are responsible for their processing.
So eventually, if you look at the minimum application structure, it will comprise only the following two files:
app.yamlmain.pyHere, app.yaml ...
Read now
Unlock full access