Skip to content

AaronScruggs/todomvc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

TodoMVC - Backbone.js + Django

Description

Create a REST API for use with the Backbone.js TodoMVC app.

Normal Mode

Using the Django REST Framework, build an API with one resource: todos.

Your URLs should be nested under /api/, and will look like:

  • GET /api/todos/
  • POST /api/todos/
  • PUT /api/todos/{id}
  • DELETE /api/todos/{id}

The todo resource should have the following fields:

  • id
  • title - string, required
  • completed - boolean, default false
  • order - integer, not required, can be null

Hard Mode

For hard mode, do everything shown above, plus add functional tests for your API.

External Links

About

Week 7 Day 1 Homework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 48.9%
  • Python 39.6%
  • HTML 11.5%