- Install python 3 (
brew install python3
). - Set python3 & pip3 as your defaults by linking them to your /usr/local/bin:
ln -s /usr/local/Cellar/python3/3.4.2_1/bin/python3.4 /usr/local/bin/python
ln -s /usr/local/Cellar/python3/3.4.2_1/bin/pip3.4 /usr/local/bin/pip
- Install RabbitMQ (
brew install rabbitmq
). - Install heroku-toolbelt.
- Install the dependencies (
pip install -r requirements.txt
). - Rename the environment config template to
development.env
. - Replace any credentials in the config for your local environment that might differ from the defaults.
- Create a symbolic link from the environment you want to use as your default environment (e.g.
ln -s config/development.env .env
).