-
Notifications
You must be signed in to change notification settings - Fork 79
install guide updates #3312
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
install guide updates #3312
Changes from all commits
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
Qiita installation | ||
Qiita installation | ||
================== | ||
|
||
Qiita is pip installable, but depends on specific versions of python and non-python packages that must be installed first. We strongly recommend using virtual environments; a popular solution to manage them is [miniconda](http://conda.pydata.org/miniconda.html), a lightweight version of the virtual environment, python distribution, and package manager anaconda. These instructions will be based on miniconda. | ||
|
@@ -181,7 +181,7 @@ github organization. Each of the plugins have their own installation instruction | |
suggest looking at each individual .travis.yml file to see detailed installation | ||
instructions. Note that the most common plugins are: | ||
- [qtp-biom](https://github.com/qiita-spots/qtp-biom) | ||
- [qtp-target-gene](https://github.com/qiita-spots/qtp-target-gene) | ||
- [qtp-sequencing](https://github.com/qiita-spots/qtp-sequencing) | ||
- [qp-target-gene](https://github.com/qiita-spots/qp-target-gene) | ||
|
||
## Configure Qiita | ||
|
@@ -206,9 +206,7 @@ Set your `QIITA_CONFIG_FP` environment variable to point to that file (into `.ba | |
source activate qiita | ||
``` | ||
|
||
Update paths in the newly copied configuration file to match your settings, e.g. replace /home/travis/ with your user home directory. | ||
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. There are no travis paths in the config anymore. |
||
|
||
If you are working on WSL, you will need to start the redis server with the following command before making a test environment: | ||
If you are working on Mac OS X or WSL, you will need to start the redis server with the following command before making a test environment: | ||
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. Installing on mac (not just WSL) fails if one doesn't run the redis-server start ... ask me how I know :) |
||
```bash | ||
redis-server --daemonize yes --port 7777 | ||
``` | ||
|
@@ -224,7 +222,7 @@ Finally, redbiom relies on the REDBIOM_HOST environment variable to set the URL | |
export REDBIOM_HOST=http://my_host.com:7379 | ||
``` | ||
|
||
## Confirgure NGINX and supervisor | ||
## Configure NGINX and supervisor | ||
|
||
(NGINX)[https://www.nginx.com/] is not a requirement for Qiita development but it's highly recommended for deploys as this will allow us | ||
to have multiple workers. Note that we are already installing (NGINX)[https://www.nginx.com/] within the Qiita conda environment; also, | ||
|
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.
qtp-target-gene has been renamed to qtp-sequencing. The old link still works, but it is surprising (and potentially worrying :) to the reader to end up at a different URL than the one they expected.