Skip to content

Commit

Permalink
Merge pull request #113 from camicroscope/develop
Browse files Browse the repository at this point in the history
For 3.7.1
  • Loading branch information
birm authored Apr 3, 2020
2 parents d614e84 + f734b60 commit a8d98b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions caMicroscope.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ services:
- mongo
back:
build:
context: "https://github.com/camicroscope/caracal.git#v3.7.0"
context: "https://github.com/camicroscope/caracal.git#v3.7.1"
args:
viewer: "v3.7.0"
viewer: "v3.7.1"
depends_on:
- "mongo"
ports:
Expand Down
4 changes: 2 additions & 2 deletions config/default_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ let defaultTemplate = {
db.template.insert(defaultTemplate)

var defaultConfigs=[{
config_name:"preset_label",
name:"preset_label",
configuration:[
{
title:"Lymph",
Expand Down Expand Up @@ -431,4 +431,4 @@ var defaultConfigs=[{
]
}];

db.configuration.insertMany(defaultConfigs)
db.config.insertMany(defaultConfigs)
2 changes: 1 addition & 1 deletion config/mongo_idx.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ db.template.createIndex({'name': 1})
db.heatmap.createIndex({"provenance.image.slide": 1, "provenance.analysis.execution_id": 1})
db.heatmap.createIndex({"provenance.image.slide": 1})
db.heatmapEdit.createIndex({"provenance.image.slide":1, "provenance.analysis.execution_id":1, "user_id":1})
db.configuration.createIndex({'config_name': 1}, { unique: true })
db.config.createIndex({'name': 1}, { unique: true })

0 comments on commit a8d98b8

Please sign in to comment.