Skip to content

Commit

Permalink
Add local security disable instructions to CONTRIBUTING.md
Browse files Browse the repository at this point in the history
Close #2156
  • Loading branch information
nateberkopec committed Nov 11, 2019
1 parent d434d39 commit c4a6101
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ Follow the instructions below on how to install Bundler and setup the database.
* Pull ElasticSearch `5.1.2` : `docker pull docker.elastic.co/elasticsearch/elasticsearch:5.1.2`
* Running Elasticsearch from the command line:
```
docker run -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" docker.elastic.co/elasticsearch/elasticsearch:5.1.2
docker run -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" -e "xpack.security.enabled=false" docker.elastic.co/elasticsearch/elasticsearch:5.1.2
```
* Note that `-e "xpack.security.enabled=false"` disables authentication.

* Install PostgreSQL (>= 9.6.x): `brew install postgres`
* Setup information: `brew info postgresql`
Expand Down

0 comments on commit c4a6101

Please sign in to comment.