Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Unified Diff: doc/source/structure.rst

Issue 775763005: Added bootstrap.rst (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Addressed review comments Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « doc/source/index.rst ('k') | doc/source/usage.rst » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: doc/source/structure.rst
diff --git a/doc/source/structure.rst b/doc/source/structure.rst
index ca6fea31d47bf8b892cb248b053f19c287e6e7fe..9deb53363d65d23f96bbc93458ece1c05583ebc7 100644
--- a/doc/source/structure.rst
+++ b/doc/source/structure.rst
@@ -23,7 +23,8 @@ Entry points
Miscellaneous technical stuff
-----------------------------
-* bootstrap/: utilities to set up a proper Python virtual environment.
+* bootstrap/: utilities to set up a proper Python virtual environment. More
+ details about it can be found on this page: :doc:`bootstrap`.
* infra/path_hacks: submodules of this modules give access to modules in the
build/ repository (``from infra.path_hacks.common import <stg>`` is actually
getting ``<stg>`` from build/scripts/common).
@@ -41,5 +42,13 @@ infra/services/
appengine/ and appengine_modules/
---------------------------------
-Contains all appengine applications.
+appengine/ should only contain appengine applications (i.e. directories
+containing an app.yaml file), appengine_modules/ should contain python packages
+that can be shared between appengine apps. The correct way to use one of them is
+to symlink the directory inside the application directory.
+
+Example: the `myapp` application should live in `appengine/myapp`. To use
+`appengine_module/testing_utils`, create a symlink to it in
+`appengine/myapp/testing_utils`. The name should remain the same as Python
+relies on directory names for its import system.
« no previous file with comments | « doc/source/index.rst ('k') | doc/source/usage.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698