Skip to content

Commit

Permalink
Added Documentation: How to install this project in Mac OS X (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
purwowd committed Sep 30, 2020
1 parent b53db10 commit 4099546
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ pip install pipenv
pipenv install
```

### Install on MacOS
```bash
git clone git@github.com:purwowd/microservices-scaffold.git
cd microservices-scaffold
virtualenv -p python3 venv
source venv/bin/activate
pip3 install -r requirements.txt
python manage.py runserver
```

#### Advantages over plain pip and requirements.txt
[Pipenv](https://pipenv.readthedocs.io/en/latest/) generates two files: a `Pipfile`and a `Pipfile.lock`.
* `Pipfile`: Is a high level declaration of the dependencies of your project. It can contain "dev" dependencies (usually test related stuff) and "standard" dependencies which are the ones you'll need for your project to function
Expand Down

0 comments on commit 4099546

Please sign in to comment.