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

Unified Diff: appengine/findit/util_scripts/crash_queries/README.md

Issue 2391823006: [Findit] Add iterator and crash_iterator for delta test (Closed)
Patch Set: Address comments. Created 4 years, 2 months 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
Index: appengine/findit/util_scripts/crash_queries/README.md
diff --git a/appengine/findit/util_scripts/crash_queries/README.md b/appengine/findit/util_scripts/crash_queries/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..8126befc15b61d9f3b3213be6b2a9a42c082b931
--- /dev/null
+++ b/appengine/findit/util_scripts/crash_queries/README.md
@@ -0,0 +1,34 @@
+###################### Set up enviroment variables. #####################
+##!/bin/bash
+#
+## Notice:
+## User should copy the this part to setup_enviroments.sh script and customized
+## the path values.
+## Source this script to setup the PYTHONPATH and other environment settings for
+## pulling data from datastore App Engine Remote API. Command:
stgao 2016/10/13 06:38:51 What's the entry point of the delta test? A python
Sharu Jiang 2016/10/13 20:31:16 The entry point is a python script. Some user se
stgao 2016/10/14 00:55:01 Why this can't be taken care by the python script
stgao 2016/10/19 00:49:47 And ping again
Sharu Jiang 2016/10/19 20:12:44 This can be taken care by the python script itself
stgao 2016/10/20 01:18:37 In that case, can we extract and share just like a
Sharu Jiang 2016/10/20 20:38:20 Yes, those findit_dir, third_party_dir, appengine_
stgao 2016/10/21 01:36:34 We could check environment setting as in my last c
Sharu Jiang 2016/10/21 18:29:40 Done.
+## source setup_enviroments.sh
+#
+## This must be set to the directory in which Findit source code is
+## checked out, eg: ~/chrome-internal if the checkout is in
+## ~/chrome-internal/findit.
+#export FINDIT_ROOT_DIR='root/path/to/findit'
+#
+## Since findit doesn't want to cover the tests of
+#export UTIL_SCRIPTS_DIR=$FINDIT_ROOT_DIR/util_scripts
+#
+##This must be set to the third_party directory under findit.
+#export THIRD_PARTY_DIR=${FINDIT_ROOT_DIR}/third_party
+#
+## This must be set to your appengine SDK directory.
+#APPENGINE_SDK_DIR='path/to/google_appengine'
+#
+#if [[ $PYTHONPATH != *$APPENGINE_SDK_DIR* ]]
+#then
+# export PYTHONPATH=$UTIL_SCRIPTS_DIR:$FINDIT_ROOT_DIR:$THIRD_PARTY_DIR:$APPENGINE_SDK_DIR
+#fi
+#
+## This should be set to your app id.
+#export APP_ID="your app id"
+#
+## This must be set to the directory to put local checkout in.
+#export CHECKOUT_ROOT_DIR='path/to/checkout/root/path'

Powered by Google App Engine
This is Rietveld 408576698