Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6523430
add ASCLEPIOS sse client
jmz-b Jun 23, 2020
526a4a0
add EDF channel headers to ASCLEPIOS client upload
jmz-b Aug 7, 2020
abfe2de
bump sse-client
jmz-b Aug 11, 2020
4335b94
construct xnatUrl manually
jmz-b Aug 31, 2020
33fcd08
use templated vars in .env
jmz-b Aug 31, 2020
3bcbb15
refactor
jmz-b Aug 31, 2020
6e8fe69
rename data.url -> data.path
jmz-b Sep 1, 2020
fccbdb7
keycloak integration
jmz-b Sep 3, 2020
45575c7
remove config.js from gitignore
jmz-b Sep 3, 2020
ef9bd43
remove .env from vcs
jmz-b Sep 3, 2020
c0feb16
Update README.md
jmz-b Sep 4, 2020
d72a5e6
[Security] Bump websocket-extensions from 0.1.3 to 0.1.4 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
bbf8c46
[Security] Bump mixin-deep from 1.3.1 to 1.3.2 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
12d663d
[Security] Bump lodash.template from 4.4.0 to 4.5.0 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
a20d8bb
[Security] Bump js-yaml from 3.12.0 to 3.14.0 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
69b4096
[Security] Bump http-proxy from 1.17.0 to 1.18.1 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
442bda4
[Security] Bump handlebars from 4.0.12 to 4.7.6 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
0ea894e
[Security] Bump tar from 4.4.1 to 4.4.13 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
2e57f5e
[Security] Bump eslint-utils from 1.3.1 to 1.4.3 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
4a433a6
[Security] Bump elliptic from 6.4.1 to 6.5.3 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
93d8e87
[Security] Bump acorn from 5.7.3 to 5.7.4 in /sn-editor
dependabot-preview[bot] Sep 28, 2020
615cf7c
Bump handlebars from 4.0.11 to 4.7.6 in /sn-webrtc
dependabot[bot] Sep 28, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sn-editor/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
Expand All @@ -22,5 +23,4 @@ yarn-error.log*

*.zip
*.edf
*.txt
src/config.js
*.txt
21 changes: 3 additions & 18 deletions sn-editor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,11 @@ Nachfolgeprojekt vom [EDF-Visualisierer](https://git.tools.f4.htw-berlin.de/somn

## Build

* Create the file `src/config.js` and add something like the following:
* Create the file `.env` and add something like the following:

```js
const autologin = false;

const host = 'http://localhost/xnat/REST';

const credentials = {
username: 'admin',
password: 'admin',
};

const defaultProject = 'project1';
const defaultSubject = 'subject1';
const pipelineName = 'somnonetz-pipeline';
const pipelineParams = {
algorithm: 'sn_getEDFHeaderdata'
};

export { autologin, host, credentials, defaultProject, defaultSubject, pipelineName, pipelineParams };
REACT_APP_IN_BROWSER=1
REACT_APP_XNAT_API_URL=http://localhost/xnat/REST
```

* Then run:
Expand Down
Loading