~chris-rogers/maus/emr_mc_digitization

« back to all changes in this revision

Viewing changes to src/common_py/ConfigurationDefaults.py

Merge from jackson devel branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
282
282
maus_version = "" # set at runtime - do not edit this (changes are ignored)
283
283
configuration_file = "" # should be set on the command line only (else ignored)
284
284
 
285
 
doc_store_class = "docstore.InMemoryDocumentStore.InMemoryDocumentStore"
286
 
couchdb_url = "http://localhost:5984" # Default CouchDB URL. Only needed if using CouchDBDocumentStore.
287
 
couchdb_database_name = "mausdb" # Default CouchDB database name. Only needed if using CouchDBDocumentStore.
 
285
doc_store_class = "docstore.MongoDBDocumentStore.MongoDBDocumentStore"
 
286
doc_collection_name = "spills" # Default document collection name. Only needed if using multi_process mode. If "auto" then a collection name will be auto-generated for spills output by input-transform workflows.
288
287
 
289
288
mongodb_host = "localhost" # Default MongoDB host name. Only needed if using MongoDBDocumentStore.
290
289
mongodb_port = 27017 # Default MongoDB port. Only needed if using MongoDBDocumentStore.
291
290
mongodb_database_name = "mausdb" # Default MongoDB database name. Only needed if using MongoDBDocumentStore.
292
 
mongodb_collection_name = "spills" # Default MongoDB collection name. Only needed if using MongoDBDocumentStore.
293
291
 
294
 
ckov_position_threshold = 40
 
292
# Default OutputPyImage image directory. MAUS web application directory.
 
293
image_directory = os.environ.get("MAUS_WEB_MEDIA_RAW") if (os.environ.get("MAUS_WEB_MEDIA_RAW") != None) else os.getcwd()
 
294
# Default OutputPyFile output directory. MAUS web application directory.
 
295
output_file_directory = os.environ.get("MAUS_WEB_MEDIA_RAW") if (os.environ.get("MAUS_WEB_MEDIA_RAW") != None) else os.getcwd()
295
296