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

Side by Side Diff: doc/source/structure.rst

Issue 725843004: DOC: added appengine.rst (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: 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 unified diff | Download patch
« doc/source/appengine.rst ('K') | « doc/source/index.rst ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Structure of the infra.git repository 1 Structure of the infra.git repository
2 ===================================== 2 =====================================
3 3
4 Please also read the root README.md file in the source tree. The following 4 Please also read the root README.md file in the source tree. The following
5 sections contain an overview of the directory layout. All paths are relative to 5 sections contain an overview of the directory layout. All paths are relative to
6 the root one, which means that infra/ refers to infra/infra/. 6 the root one, which means that infra/ refers to infra/infra/.
7 7
8 Entry points 8 Entry points
9 ------------ 9 ------------
10 * run.py: wrapper script to run programs contained in subdirectories without 10 * run.py: wrapper script to run programs contained in subdirectories without
(...skipping 23 matching lines...) Expand all
34 --------------- 34 ---------------
35 * gnumbd: git numbering daemon. Adds a monotonically-increasing number to git 35 * gnumbd: git numbering daemon. Adds a monotonically-increasing number to git
36 commits. 36 commits.
37 * gsubtreed: git subtree daemon. Mirrors subdirectories of some repositories 37 * gsubtreed: git subtree daemon. Mirrors subdirectories of some repositories
38 into independent repos so they can be consumed by downstream projects. 38 into independent repos so they can be consumed by downstream projects.
39 * lkgr_finder / lkgr_tag_pusher: computes last known good revision, based on 39 * lkgr_finder / lkgr_tag_pusher: computes last known good revision, based on
40 test results. 40 test results.
41 41
42 appengine/ and appengine_modules/ 42 appengine/ and appengine_modules/
43 --------------------------------- 43 ---------------------------------
44 Contains all appengine applications. 44 ``appengine/`` is meant to contain appengine applications, one per directory
45 (the testing framework relies on this assumption to list all tests).
46 To be consistent with appengine principles, each of these directories must
47 contain everything it needs to work. Code shared between several applications
48 should live in ``appengine_modules/`` and be symlinked into each application
49 directory that need it.
45 50
51 For more details, see :doc:`appengine`
52
OLDNEW
« doc/source/appengine.rst ('K') | « doc/source/index.rst ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698