Folder Structure ================ Root Directory Structure --------------------------- The root of your application contains the following items: * app - contains code related specifically to your application. * ferris - contains Ferris' core code. * plugins - contains re-usable components that you can use from your application. * packages - contains 3rd party libraries (such as pytz, google apis, etc.) * app.yaml - Normal App Engine configuration. You can modify your application configuration here. * settings.py - Global application (and plugin) configuration. You can load these settings by importing the settings module. Application Directory Structure ------------------------------- The app folder contains the following items: * models - Contains :doc:`model ` modules. * handlers - Contains :doc:`handler ` modules. * templates - Contains :doc:`template