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

Unified Diff: appengine/findit/predator/README.md

Issue 2488113005: [Findit] Re-org code. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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 | « appengine/findit/model/wf_config.py ('k') | appengine/findit/predator/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/predator/README.md
diff --git a/appengine/findit/predator/README.md b/appengine/findit/predator/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..00c83d5f911a7df4cf213c9ef68a2a4d2e821c1b
--- /dev/null
+++ b/appengine/findit/predator/README.md
@@ -0,0 +1,15 @@
+# Code structure
+
+* [analysis](analysis): Core library for analyzing Chrome crashes.
+* [app](app): The App Engine app to provide web APIs to analyze Chrome crashes through invoking the core library above, and web pages to view & monitor analysis results.
+
+# Refactoring guideline
+* All core logic of analysis should live in [analysis](analysis), and it should
+ be standalone, and not depend any App Engine APIs.
+* All app-layer code should live in [app](app)
+ * Frontend code rendering UIs to providing APIs for clients like ClusterFuzz/Fracas/Cracas should live in [app/frontend](app/frontend).
+ * Backend code running the analysis should live in [app/backend](app/backend).
+ * Shared code between the frontend and backend should live in [app/common](app/common).
+
+# Next step
+ When the refactoring is done, we will do a one-off move to appengine/predator.
« no previous file with comments | « appengine/findit/model/wf_config.py ('k') | appengine/findit/predator/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698