Assists with my learning of Python, basic data structures and algorithms. Will display a problem and verify your given answer
Make sure you have Python installed properly. Also, install the Heroku Toolbelt.
$ git clone git@github.com:mriddle/brainiac.git
$ cd brainiac
$ pip install -r requirements.txt
$ find . -name '*.example' | grep '^[\.c]' | perl -pE 's/^(.*?)\.example/$1/' | xargs -IFILE cp -v FILE.example FILE
$ python manage.py syncdb
$ foreman start webYour app should now be running on localhost:5000.
$ heroku create
$ git push heroku master
$ heroku run python manage.py syncdb
$ heroku open