| OLD | NEW |
| (Empty) | |
| 1 ###################### Set up enviroment variables. ##################### |
| 2 ##!/bin/bash |
| 3 # |
| 4 ## Notice: |
| 5 ## User should copy the this part to setup_enviroments.sh script and customized |
| 6 ## the path values. |
| 7 ## Source this script to setup the PYTHONPATH and other environment settings for |
| 8 ## pulling data from datastore App Engine Remote API. Command: |
| 9 ## source setup_enviroments.sh |
| 10 # |
| 11 ## This must be set to the directory in which Findit source code is |
| 12 ## checked out, eg: ~/chrome-internal if the checkout is in |
| 13 ## ~/chrome-internal/findit. |
| 14 #export FINDIT_ROOT_DIR='root/path/to/findit' |
| 15 # |
| 16 ## Since findit doesn't want to cover the tests of |
| 17 #export UTIL_SCRIPTS_DIR=$FINDIT_ROOT_DIR/util_scripts |
| 18 # |
| 19 ##This must be set to the third_party directory under findit. |
| 20 #export THIRD_PARTY_DIR=${FINDIT_ROOT_DIR}/third_party |
| 21 # |
| 22 ## This must be set to your appengine SDK directory. |
| 23 #APPENGINE_SDK_DIR='path/to/google_appengine' |
| 24 # |
| 25 #if [[ $PYTHONPATH != *$APPENGINE_SDK_DIR* ]] |
| 26 #then |
| 27 # export PYTHONPATH=$UTIL_SCRIPTS_DIR:$FINDIT_ROOT_DIR:$THIRD_PARTY_DIR:$APPENG
INE_SDK_DIR |
| 28 #fi |
| 29 # |
| 30 ## This should be set to your app id. |
| 31 #export APP_ID="your app id" |
| 32 # |
| 33 ## This must be set to the directory to put local checkout in. |
| 34 #export CHECKOUT_ROOT_DIR='path/to/checkout/root/path' |
| OLD | NEW |