Skip to content
This repository has been archived by the owner on Jan 17, 2020. It is now read-only.

Latest commit

 

History

History
32 lines (21 loc) · 1.15 KB

README.md

File metadata and controls

32 lines (21 loc) · 1.15 KB

TodoMVC Backend Using Django Rest Framework

This project, is an implementation of the popular TodoMVC and a backend built using Django Rest Framework.

TodoMVC Rest Framework


Quick Start

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

Contributing

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.

Credits

The frontend of this app, is based on TodoMVC, and the Django API, is based on the tutorial Start your API from GoDjango.