Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.68 KB

File metadata and controls

55 lines (38 loc) · 1.68 KB

<<<<<<< HEAD

Tasks Application

Skill Level: Intermediate
Time Limit: n/a

Create an application with the framework of your choice (Rails, Django, etc) that tracks tasks that you'd like to complete. The goal of this challenge is to build a simple RESTful application that persists data in a database and provides CRUD functionality to the user.

Mockup

image

VERB PATH User for
GET /tasks display a list of all tasks
POST /tasks create a new task
GET /tasks/:id display a specific task
PATCH/PUT /tasks/:id update a specific task
DELETE /tasks/:id delete a specific task

Purpose of challenge

  • Learn RESTful routes
  • Simple drill for learning a new web framework
  • Use a database for persistence
  • Familiarity with HTTP methods

Resources

README

This README would normally document whatever steps are necessary to get the application up and running.

Things you may want to cover:

  • Ruby version

  • System dependencies

  • Configuration

  • Database creation

  • Database initialization

  • How to run the test suite

  • Services (job queues, cache servers, search engines, etc.)

  • Deployment instructions

  • ...

e72fa49... initial commit