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

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

Issue 2391823006: [Findit] Add iterator and crash_iterator for delta test (Closed)
Patch Set: Change wording in README. 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..44e4fa0a4ff019be795516393f3698335665cf45
--- /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:
+## source setup_enviroments.sh
+#
+#SCRIPT_DIR='$( cd '$( dirname '${BASH_SOURCE[0]}' )' && pwd )'
+#
+## The root directory of Findit source code.
+#export FINDIT_ROOT_DIR=$SCRIPT_DIR/../..
+#
+## Since findit doesn't want to cover the tests of
+#export UTIL_SCRIPTS_DIR=$FINDIT_ROOT_DIR/util_scripts
+#
+##Third_party directory under findit.
+#export THIRD_PARTY_DIR=${FINDIT_ROOT_DIR}/third_party
+#
+##Appengine SDK directory of infra repo.
+#APPENGINE_SDK_DIR=${FINDIT_ROOT_DIR}/../../../google_appengine
+#
+#if [[ $PYTHONPATH != *$APPENGINE_SDK_DIR* ]]
+#then
+# export PYTHONPATH=$UTIL_SCRIPTS_DIR:$FINDIT_ROOT_DIR:$THIRD_PARTY_DIR:$APPENGINE_SDK_DIR
+#fi
+#
+## This MUST 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