Skip to content

Commit

Permalink
Merge pull request #343 from neomad-team/Fix-wrong-port-make-fixtures
Browse files Browse the repository at this point in the history
Fix wrong port make fixtures
  • Loading branch information
mlbiche authored Feb 5, 2020
2 parents 00cfec5 + 82dfcb7 commit a015f5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ pip3 install -r requirements.txt

make title text="Installing your dabase"
docker pull mongo:latest
docker container create --expose 27017 -p ${DB_PORT}:27017 --name=neomadorg_db_1 -v ${PWD}/data:/data -v ${PWD}/data/db:/data/db mongo:latest mongod
docker run -d --expose 27017 -p ${DB_PORT}:27017 --name=neomadorg_db_1 -v ${PWD}/data:/data -v ${PWD}/data/db:/data/db mongo:latest mongod

make fixtures

make start
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ The next steps are also simple. Choose your story:
- for lazy developers: go to [Lazy developer install](#lazy-developer-installation)
- for developers who want to keep control: read the [Manual installation](#manual-installation)

> You may then want to insert dummy data use `make fixtures`.
### Lazy developer installation

make install
Expand All @@ -51,6 +49,8 @@ It's been made to be easily readable.

Note that you can either have your own _MongoDB_ or use Docker.

> You may then want to insert dummy data running `make fixtures`.

## Configuring

Expand Down

0 comments on commit a015f5c

Please sign in to comment.