2012-10-09 18:44:01 -04:00
2012-10-09 18:44:01 -04:00
2012-10-09 18:44:01 -04:00
2012-01-03 10:19:26 -05:00
2012-08-03 12:48:45 -07:00

Basic To Do App in Django
=========================

This is a basic to do app in django. Its meant to be a more complicated hello world for django that utilizes a database.

Getting setup
-------------

::

    virtualenv --no-site-packages venv
    source venv/bin/activate
    pip install -r requirements.txt
    python app/manage.py syncdb
    python app/manage.py runserver

Deploying to Heroku
-------------------

::

    heroku create -s cedar
    git push heroku master
    heroku run python app/manage.py syncdb
    heroku open

S
Description
No description provided
Readme 42 KiB
Languages
Python 72.6%
HTML 15%
CSS 11.7%
Procfile 0.7%