forked from team19hackathon2021/ChRIS_ultron_backEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postscript.sh
executable file
·59 lines (56 loc) · 2.66 KB
/
postscript.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash
#
# Once a ChRIS/CUBE ecosystem has been fully instantiated from a run of the
# 'make.sh' script, the system will by default only have a few test/dummy
# plugins available. This is to keep instantiation times comparatively fast,
# especially in the case of development where the whole ecosystem is created
# and destroyed multiple times.
#
# In order to add more plugins to an instantiated system, this postscript.sh
# can be used to add plugins and also provide an easy cheat sheet for adding
# more.
#
./plugin_add.sh "\
fnndsc/pl-dsdircopy, \
fnndsc/pl-simplefsapp^moc, \
fnndsc/pl-simpledsapp^moc, \
fnndsc/pl-s3push, \
fnndsc/pl-pfdicom_tagextract, \
fnndsc/pl-pfdicom_tagsub, \
fnndsc/pl-mpcs, \
fnndsc/pl-mpcs^moc, \
fnndsc/pl-fshack, \
fnndsc/pl-fastsurfer_inference, \
fnndsc/pl-freesurfer_pp, \
fnndsc/pl-freesurfer_pp^moc, \
fnndsc/pl-z2labelmap, \
fnndsc/pl-z2labelmap^moc, \
fnndsc/pl-mri10yr06mo01da_normal, \
fnndsc/pl-mri10yr06mo01da_normal^moc, \
fnndsc/pl-mgz2lut_report, \
fnndsc/pl-pfdo_mgz2img, \
jonocameron/pl-sevstack, \
fnndsc/pl-topologicalcopy, \
fnndsc/pl-brainmgz, \
fnndsc/pl-pfdorun, \
fnndsc/pl-mgz2imageslices, \
fnndsc/pl-multipass, \
fnndsc/pl-heatmap
"
#
# Adding additional users
# Users can be added using some specific variation of the
# following:
#
# CUBE USERS
# For "superusers"
#####user_add.sh -U "rudolph:rudolph1234:[email protected]"
# For "normal users"
#####user_add.sh "rpienaar:rudolph1234:[email protected]"
#
# STORE USERS
# For "superusers"
#####user_add.sh -U -S "rudolph:rudolph1234:[email protected]"
# For "normal users"
#####user_add.sh -S "rpienaar:rudolph1234:[email protected]"
#