Skip to content

Jodything/pushups

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

121 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pushups

Installation and technology

Here's what you'll need to get everything working:

Install postgres

$ brew install postgresql
$ createdb pushups

Install virtualenv

$ pip install virtualenv
$ virtualenv -p python3 venv
$ source venv/bin/activate
$ pip install -r requirements.txt

Install foreman

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

Get Twilio working

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

Contributing

  1. Fork this repo
  2. Make your changes (with tests)
  3. Submit a Pull Request

About

i ❤️ pushups

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 92.0%
  • JavaScript 4.1%
  • CSS 3.9%