tree: ab1d7468aa3ae82f8ba2409ce11c7eb9ef240531 [path history] [tgz]
  1. components/
  2. test_support/
  3. tests/
  4. tool_support/
  5. tools/
  6. PRESUBMIT.py
  7. README.md
  8. test.py
appengine/components/README.md

components/

Modules and tools in this directory are shared between all AppEngine servers in this repository.

Contents of this directory:

  • components/ contains reusable code to be used from AppEngine application. components directory must be symlinked to an app directory. Must contain only code that needs to be deployed to GAE The only exception is unit tests with regexp ‘.+_test.py’ or ‘test_.+’, which are acceptable.
  • test_support/ reusable code that can only be used from tests, not from AppEngine. This code must not be deployed to AppEngine.
  • tool_support/ reusable code that can only be used from tests and tools, not from AppEngine. This code must not be deployed to AppEngine.
  • tests/ contains smoke tests that depend on //appengine/components/components/ thus can't be located there.
  • tools/ utilities to manage applications on AppEngine. This code must not be deployed to AppEngine.