Here's what you'll need to get everything working:
$ brew install postgresql
$ createdb pushups
$ pip install virtualenv
$ virtualenv -p python3 venv
$ source venv/bin/activate
$ pip install -r requirements.txt
We use foreman to manage all of our processes. It also lets us manage all of our environment variables with a .env file.
$ gem install foreman
$ foreman start
In order to use django twilio we have to add some specific environment variables to our .env file.
# .env
TWILIO_AUTH_TOKEN=sometoken
TWILIO_ACCOUNT_SID=someothertoken
Now when you start foreman you should be able to use twilio
- Fork this repo
- Make your changes (with tests)
- Submit a Pull Request