Skip to content

Commit f998ebd

Browse files
committed
DOC: Update installation instructions
1 parent a791eef commit f998ebd

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

INSTALL.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@ Install the non-python dependencies
99
* [PostgreSQL](http://www.postgresql.org/download/) (we have tested most extensively with 9.3)
1010
* [redis-server](http://redis.io) (we have tested most extensively with 2.8.17)
1111

12-
Install both of these packages according to the instructions on their websites. You'll then need to ensure that the postgres binaries (for example, ``psql``) are in your executable search path (``$PATH`` environment variable).
12+
Install both of these packages according to the instructions on their websites.
13+
You'll then need to ensure that the postgres binaries (for example, ``psql``)
14+
are in your executable search path (``$PATH`` environment variable). For
15+
example if you are using Postgres.app on OS X, you can do this by addint
16+
the following line to your `.bash_profile`:
17+
18+
```bash
19+
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.3/bin/
20+
```
1321

1422
Install Qiita and its python dependencies
1523
-----------------------------------------
@@ -29,7 +37,7 @@ After these commands are executed, you will need to:
2937

3038
```bash
3139
cd
32-
curl -O https://raw.githubusercontent.com/biocore/qiita/master/qiita_core/support_files/config_test.txt > config_test.txt
40+
curl -O https://raw.githubusercontent.com/biocore/qiita/master/qiita_core/support_files/config_test.txt
3341
```
3442

3543
2. Set your `QIITA_CONFIG_FP` environment variable to point to that file:
@@ -46,10 +54,15 @@ After these commands are executed, you will need to:
4654
qiita_env make --no-load-ontologies
4755
```
4856

49-
4. Finally you can start the server:
57+
4. Start the redis server:
58+
```bash
59+
redis-server
60+
```
61+
62+
5. Finally you can start the server:
5063

5164
```bash
52-
qiita_env start_cluster demo test reserved && sleep 30
65+
qiita_env start_cluster qiita_general && sleep 30
5366
qiita webserver start
5467
```
5568

0 commit comments

Comments
 (0)