-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathazurite_localdb_env
63 lines (52 loc) · 2.45 KB
/
azurite_localdb_env
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Curation GitHub Info
# Note:
# - GitHub token with minimal access (e.g. repo:public_repo) is required
# - This can be the same token used for CRAWLER_GITHUB_TOKEN.
CURATION_GITHUB_BRANCH="master"
CURATION_GITHUB_OWNER="clearlydefined"
CURATION_GITHUB_REPO="curated-data-dev"
CURATION_GITHUB_TOKEN="<your GitHub token>"
# Curation Store Info
CURATION_MONGO_CONNECTION_STRING="mongodb://clearlydefined_mongo_db"
CURATION_MONGO_DB_NAME="clearlydefined"
CURATION_MONGO_COLLECTION_NAME="curations"
CURATION_PROVIDER="github"
CURATION_STORE_PROVIDER="mongo"
# GitLab info
GITLAB_TOKEN="<your GitLab token (unless you are working on code that interacts with the GitLab API, this can be a random string of characters)>"
# Definition Store Info
DEFINITION_STORE_PROVIDER=dispatch+azure+mongoTrimmed
DEFINITION_MONGO_CONNECTION_STRING="mongodb://clearlydefined_mongo_db"
DEFINITION_MONGO_DB_NAME="clearlydefined"
DEFINITION_UPGRADE_PROVIDER=upgradeQueue
DEFINITION_UPGRADE_QUEUE_PROVIDER=azure
DEFINITION_UPGRADE_QUEUE_NAME=definitions-upgrade-test
# Harvest Store Info
HARVEST_STORE_PROVIDER=azure
HARVEST_AZBLOB_CONTAINER_NAME=develop-test
HARVEST_AZBLOB_CONNECTION_STRING=DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;QueueEndpoint=http://azurite:10001/devstoreaccount1;TableEndpoint=http://azurite:10002/devstoreaccount1;
HARVEST_QUEUE_PROVIDER=azure
HARVEST_QUEUE_NAME=harvests-test
# service to crawler
HARVESTER_PROVIDER=crawlerQueue
HARVEST_QUEUE_PREFIX=cdcrawlerdev-test
# Note:
# - This is mounted as a volume into the container for the clearly defined service.
# See docker-compose.yml for more details.
FILE_STORE_LOCATION="/tmp/harvested_data"
WEBHOOK_CRAWLER_SECRET="secret"
WEBHOOK_GITHUB_SECRET="secret"
# Crawler Info
# Note
# - GitHub token with minimal access (e.g. repo:public_repo) is required.
# - This can be the same token used for CURATION_GITHUB_TOKEN
CRAWLER_API_URL="http://crawler:5000"
CRAWLER_GITHUB_TOKEN="<your GitHub token>"
CRAWLER_DEADLETTER_PROVIDER=cd(azblob)
CRAWLER_NAME=cdcrawlerlocal
CRAWLER_AZBLOB_CONNECTION_STRING=${HARVEST_AZBLOB_CONNECTION_STRING}
CRAWLER_QUEUE_PROVIDER=storageQueue
CRAWLER_QUEUE_PREFIX=cdcrawlerdev-test
CRAWLER_STORE_PROVIDER=cdDispatch+cd(azblob)+azqueue
CRAWLER_AZBLOB_CONTAINER_NAME=${HARVEST_AZBLOB_CONTAINER_NAME}
CRAWLER_HARVESTS_QUEUE_NAME=${HARVEST_QUEUE_NAME}