-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.misc
34 lines (28 loc) · 1.14 KB
/
.misc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
## Disable ps0 on vscode since running term in editor tab
# if [ "$TERM_PROGRAM" == "vscode" ]; then #macOS
# # echo "vscode"
# ps0
# fi
# export LOG_LEVEL="WARNING"
export LOG_LEVEL="INFO"
# export LOG_LEVEL="DEBUG"
export LOG_TO_FILE=0
# export LOG_LEVEL="ERROR"
export S3_BUCKET_NAME="folio-ecourts-local"
export HC_CASE_QUEUES=1
export SC_CASE_QUEUES=1
export CESTAT_CASE_QUEUES=1
export DHC_CASE_QUEUES=1
export DC_CASE_QUEUES=1
export INFINITE_FREE_TRIAL=1
# export CESTAT_CASE_QUEUES=0
alias purge-all-queues="rabbitmqctl list_queues -q -s name | awk '{ print $1 }' | xargs -L1 rabbitmqctl purge_queue"
alias delete-all-queues="rabbitmqctl list_queues -q -s name | awk '{ print $1 }' | xargs -L1 rabbitmqctl delete_queue"
alias queues="rabbitmqctl list_queues -q -s --formatter table consumers messages name | sort -k3"
alias q="queues"
export PATH=/Users/saurabh/.nimble/bin:$PATH
export PATH=/Users/saurabh/.choosenim/toolchains/nim-1.6.6/bin:$PATH
# export TESSDATA_PREFIX=/Users/saurabh/temp/tessdata-4.1.0
export PYTHONPATH=/Users/saurabh/source/python/ecourts
export SCRAPY_SETTINGS_MODULE=ecourts.shared.settings