diff options
author | Pjotr Prins | 2020-04-10 07:26:33 -0500 |
---|---|---|
committer | GitHub | 2020-04-10 07:26:33 -0500 |
commit | ff3007e42b5a8a866de9f6c3e2864854cd8c822f (patch) | |
tree | 083edb594b5c50c50203e90890fa7555a542ee91 /doc | |
parent | 643d7592df631fb91d1652134f437c000c1acc06 (diff) | |
parent | d53e1e98b800d7dc5720de0b3c14c94452159315 (diff) | |
download | bh20-seq-resource-ff3007e42b5a8a866de9f6c3e2864854cd8c822f.tar.gz bh20-seq-resource-ff3007e42b5a8a866de9f6c3e2864854cd8c822f.tar.lz bh20-seq-resource-ff3007e42b5a8a866de9f6c3e2864854cd8c822f.zip |
Merge pull request #4 from adamnovak/add-web-ui
Add Web UI
Diffstat (limited to 'doc')
-rw-r--r-- | doc/INSTALL.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/INSTALL.md b/doc/INSTALL.md index c5c486c..f7fd811 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -29,3 +29,23 @@ arvados-python-client-2.0.1 ciso8601-2.1.3 future-0.18.2 google-api-python-clien ```sh ~/opt/guix/bin/guix environment guix --ad-hoc git python openssl python-pycurl nss-certs -- python3 bh20sequploader/main.py ``` + +### Using the Web Uploader + +To run the web uploader in a GNU Guix environment + +``` +guix environment guix --ad-hoc git python python-flask python-pyyaml nss-certs --network openssl -- env FLASK_APP=bh20simplewebuploader/main.py flask run +``` + +The containerized version looks like + +``` +guix environment -C guix --ad-hoc git python python-flask python-pyyaml nss-certs --network openssl +``` + +and + +``` +env FLASK_APP=bh20simplewebuploader/main.py flask run +``` |