Skip to content

Commit

Permalink
Merge pull request #87 from camicroscope/develop
Browse files Browse the repository at this point in the history
configurable brushes
  • Loading branch information
birm authored Nov 11, 2019
2 parents 9d547af + d8680b1 commit faaea86
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 5 deletions.
2 changes: 2 additions & 0 deletions config/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pathdbmysql.cnf
pathdb/*.css
93 changes: 89 additions & 4 deletions config/bindaas_projects/caMicroscope.project
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,8 @@
},
"name": "csvFile",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin"
"createdBy": "admin",
"description": ""
},
"jsonFile": {
"type": "MULTIPART",
Expand All @@ -1295,7 +1296,8 @@
},
"name": "jsonFile",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin"
"createdBy": "admin",
"description": ""
},
"csv": {
"type": "FORM_DATA",
Expand All @@ -1304,7 +1306,8 @@
},
"name": "csv",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin"
"createdBy": "admin",
"description": ""
},
"json": {
"type": "FORM_DATA",
Expand All @@ -1313,7 +1316,8 @@
},
"name": "json",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin"
"createdBy": "admin",
"description": ""
}
},
"providerId": "edu.emory.cci.bindaas.datasource.provider.mongodb.MongoDBProvider",
Expand All @@ -1322,6 +1326,87 @@
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin",
"description": "log"
},
"Configuration": {
"dataSource": {
"host": "ca-mongo",
"port": "27017",
"db": "camic",
"collection": "configuration",
"initialize": true
},
"queryEndpoints": {
"getConfigByName": {
"queryTemplate": "{\n\t\"_operation\" : \"find\" ,\n\t\"_operation_args\" : {\n\t\t\t\t\t\t\t\"query\" : { \u0027config_name\u0027 : \"$name$\"} ,\n\t\t\t\t\t\t\t\"limit\" : 1\n\t\t\t\t\t\t}\n}\n ",
"metaData": {},
"tags": [],
"bindVariables": {
"name": {
"name": "name",
"required": true,
"defaultValue": "",
"description": ""
}
},
"stage": "UNVERIFIED",
"outputFormat": {
"outputFormat": "JSON"
},
"name": "getConfigByName",
"timeCreated": "Thu Nov 07 17:09:07 GMT 2019",
"createdBy": "admin",
"description": ""
}
},
"deleteEndpoints": {},
"submitEndpoints": {
"csvFile": {
"type": "MULTIPART",
"properties": {
"inputType": "CSV_FILE"
},
"name": "csvFile",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin",
"description": ""
},
"jsonFile": {
"type": "MULTIPART",
"properties": {
"inputType": "JSON_FILE"
},
"name": "jsonFile",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin",
"description": ""
},
"csv": {
"type": "FORM_DATA",
"properties": {
"inputType": "CSV"
},
"name": "csv",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin",
"description": ""
},
"json": {
"type": "FORM_DATA",
"properties": {
"inputType": "JSON"
},
"name": "json",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin",
"description": ""
}
},
"providerId": "edu.emory.cci.bindaas.datasource.provider.mongodb.MongoDBProvider",
"providerVersion": 1,
"name": "Configuration",
"timeCreated": "Tue Oct 29 20:54:11 GMT 2019",
"createdBy": "admin",
"description": "configuration"
}
},
"params": {},
Expand Down
3 changes: 3 additions & 0 deletions config/routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
},
"Log": {
"post": "/Log/submit/json"
},
"Configuration": {
"getConfigByName": "/Configuration/query/getConfigByName"
}
},
"private":{
Expand Down
1 change: 1 addition & 0 deletions data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pathdb/mysql
2 changes: 1 addition & 1 deletion quip-pathdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
logging:
driver: none
pathdb:
build: "https://github.com/SBU-BMI/PathDB.git#1.2.3"
build: "https://github.com/SBU-BMI/PathDB.git#1.3.0"
container_name: quip-pathdb
restart: unless-stopped
ports: ["443:443","80:80"]
Expand Down

0 comments on commit faaea86

Please sign in to comment.