@@ -5,11 +5,10 @@ development environment for Clearly Defined including:
5
5
* [ website] ( https://github.com/clearlydefined/website )
6
6
* [ service] ( https://github.com/clearlydefined/service )
7
7
* [ crawler] ( https://github.com/clearlydefined/crawler )
8
+ * harvest store (mounted as a volume in the service container)
8
9
* definitions and curations mongo DB databases
9
10
* queues
10
11
11
- We do this through running the various services in Docker.
12
-
13
12
We do this through [ Docker] ( https://www.docker.com/ ) and [ Docker Compose] ( https://docs.docker.com/compose/ )
14
13
15
14
## Pre-reqs
@@ -100,11 +99,30 @@ CURATION_GITHUB_OWNER="clearlydefined"
100
99
CURATION_GITHUB_REPO="curated-data-dev"
101
100
CURATION_GITHUB_TOKEN="<Your GitHub Personal Access Token>
102
101
102
+
103
+ # Curation Store Info
104
+ CURATION_MONGO_CONNECTION_STRING="mongodb://clearlydefined_mongo_db"
105
+ CURATION_MONGO_DB_NAME="clearlydefined"
106
+ CURATION_MONGO_COLLECTION_NAME="curations"
107
+ CURATION_PROVIDER="github"
108
+ CURATION_STORE_PROVIDER="mongo"
109
+
110
+ # Definition Store Info
103
111
DEFINITION_STORE_PROVIDER="mongo"
104
112
DEFINITION_MONGO_CONNECTION_STRING="mongodb://clearlydefined_mongo_db"
105
113
DEFINITION_MONGO_DB_NAME="clearlydefined"
106
114
DEFINITION_MONGO_COLLECTION_NAME="definitions-paged"
107
115
116
+ # Harvest Store Info
117
+ HARVEST_STORE_PROVIDER="file"
118
+
119
+ # Note - this is mounted as a volume
120
+ # into the container for the
121
+ # clearly defined service
122
+ # see docker-compose.yml for more details
123
+ FILE_STORE_LOCATION="/tmp/harvested_data"
124
+
125
+ # Crawler Info
108
126
CRAWLER_GITHUB_TOKEN="<Your GitHub Personal Access Token>"
109
127
```
110
128
0 commit comments