This project, is an implementation of the popular TodoMVC and a backend built using Django Rest Framework.
Getting the app to run is pretty easy, just clone the repo, install requirements, sync database and you're good to go.
# Clone the repo
$ git clone https://github.com/AxiaCore/todomvc-django.git
# Install requirements
$ pip install -U -r requirements.txt
# Sync database
$ ./manage.py syncdb
# Run the server
$ ./manage.py runserver
We really appreciate pull requests, so if you think there something missing, wrong or want to have something in the app, don't hesitate to send us a pull request.
The frontend of this app, is based on TodoMVC, and the Django API, is based on the tutorial Start your API from GoDjango.