You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,7 @@ The `install_bootstrap` script will ask you to configure each service interactiv
172
172
* On question 'What is your AWS S3 bucket?', put the name of the s3 bucket you created for Redwood.
173
173
* On question 'What is your AWS S3 endpoint?', put the S3 endpoint pertaining to your region. See [here](http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region).
174
174
* On question 'What is your AWS IAM KMS key ID?', put your encryption key ID (See 'Create an AWS IAM Encryption Key" above). If you don't want server-side encryption, you can leave this blank.
175
+
* On question 'Would you like to use external redwood databases?', enter 'N'.
175
176
* Boardwalk
176
177
* Install in prod mode
177
178
* On question `What is your Google Client ID?`, put your Google Client ID. See [here](http://bitwiser.in/2015/09/09/add-google-login-in-flask.html#creating-a-google-project)
@@ -202,10 +203,10 @@ Here are things we need to explain how to do post install:
202
203
203
204
* first of all, how to go to the website and confirm things are working e.g. https://ops-dev.ucsc-cgl.org or whatever the domain name is
204
205
* how to associate a token with a user email so token download works
205
-
*`sudo redwood/admin/bin/redwood token create -u [email protected] -s 'aws.upload aws.download'`, this give access to all programs.
206
+
*`sudo redwood/cli/bin/redwood token create -u [email protected] -s 'aws.upload aws.download'`, this give access to all programs.
206
207
* you can also assign program scopes as well, for example
* Get the reference data used by the RNASeq-CGL pipeline:
211
212
* Instructions for downloading reference data for RNASeq-CGL are located here: https://github.com/BD2KGenomics/toil-rnaseq/wiki/Pipeline-Inputs
@@ -256,7 +257,7 @@ The `test/integration.sh` file also demonstrates normal core-client usage.
256
257
257
258
Here is a sample command you can run from the `test` folder to do an upload:
258
259
259
-
**NOTE:** Make sure you create an access token for yourself first. You can do so by running within `dcc-ops` the command `redwood/admin/bin/redwood token create -u [email protected] -s 'aws.upload aws.download'`. This will create a global token that you can use for testing for upload and download on any project. End users should only be given project-specific scopes like _aws.PROJECT.upload_.
260
+
**NOTE:** Make sure you create an access token for yourself first. You can do so by running within `dcc-ops` the command `redwood/cli/bin/redwood token create -u [email protected] -s 'aws.upload aws.download'`. This will create a global token that you can use for testing for upload and download on any project. End users should only be given project-specific scopes like _aws.PROJECT.upload_.
260
261
261
262
```
262
263
sudo docker run --rm -it -e ACCESS_TOKEN=<your_token> -e REDWOOD_ENDPOINT=<your_url.com> \
ask_question "Enter your (mongodb) redwood metadata db host. You can include port number.""$REDWOOD_METADATA_DB_HOST""redwood metadata db host"$redwood_metadata_db_host
524
+
redwood_metadata_db='redwood_metadata_db'
525
+
ask_question "Enter your (mongodb) redwood metadata db database name""$REDWOOD_METADATA_DB""redwood metadata db database name"$redwood_metadata_db
ask_question "Enter your (mongodb) redwood metadata db username""$REDWOOD_METADATA_DB_USERNAME""redwood metadata db username"$redwood_metadata_db_username
ask_question "Enter your (mongodb) redwood metadata db password""$REDWOOD_METADATA_DB_PASSWORD""redwood metadata db password"$redwood_metadata_db_password
530
+
531
+
# auth db
532
+
redwood_auth_db_host='redwood_auth_db_host'
533
+
ask_question "Enter your (mongodb) redwood auth db host. You can include port number.""$REDWOOD_AUTH_DB_HOST""redwood auth db host"$redwood_auth_db_host
534
+
redwood_auth_db='redwood_auth_db'
535
+
ask_question "Enter your (mongodb) redwood auth db database name""$REDWOOD_AUTH_DB""redwood auth db database name"$redwood_auth_db
0 commit comments