-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add webknossos-connect to setup #3913
Changes from 9 commits
c8d3c2d
9405f22
88d479b
138e11b
fffb630
7647cd8
f62d5e4
bdfd512
828be6c
6a053a1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
datasets.json |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"server": {"host": "0.0.0.0", "port": 8000, "url": "http://localhost:8000"}, | ||
"datastore": {"name": "connect", "key": "secret-key"}, | ||
"webknossos": {"url": "http://localhost:9000"}, | ||
"backends": {"neuroglancer": {}}, | ||
"datasets_path": "data/datasets.json" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
name,url,key,isScratch,isDeleted,isForeign,isConnector | ||
'localhost','http://localhost:9000','something-secure',f,f,f,f | ||
'connect','http://localhost:8000','secret-key',f,f,f,t |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,10 @@ const processes = { | |
shell: true, | ||
}, | ||
), | ||
connect: spawnIfNotSpecified("noConnect", "docker-compose run --rm webknossos-connect", [], { | ||
cwd: ROOT, | ||
shell: true, | ||
}), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @philippotto If I remember correctly, you start the different parts manually sometimes. Does this break anything for you? (sbt run won’t start webknossos-connect) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That should be ok for me :) |
||
}; | ||
|
||
function spawnIfNotSpecified(keyword, command, args, options) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tracingstore
was missing here before