Giter VIP home page Giter VIP logo

cetchup's Introduction

README

This project is currently being built and will be showcased at demo night at Turing School of Software on November 11, 2017.

cetchup's People

Contributors

snayrouz avatar

Watchers

w. ian douglas avatar James Cloos avatar  avatar

cetchup's Issues

Setup User Model

Setup user model and TDD
User has:

  • full_name, :unique => true (string)
  • email, :null => false, :unique => true (string)
  • password_digest (string)
  • bio (string)
  • timestamps

Setup List model

integer "board_id", null: false
string "title"
boolean "open", default: true, null: false
datetime "created_at"
datetime "updated_at"
integer "position"

Setup card member model

integer "card_id", null: false
integer "user_id", null: false
datetime "created_at"
datetime "updated_at"

Setup Board model

string "name"
string "description"
boolean "open", default: true, null: false
datetime "created_at"
datetime "updated_at"

Setup Card Model

integer "list_id", null: false
string "title", null: false
text "description"
datetime "due_date"
boolean "open", default: true, null: false
datetime "created_at"
datetime "updated_at"
integer "position"
integer "assignee_id"

Setup Card Activity Model

integer "user_id", null: false
integer "card_id", null: false
text "description", null: false
datetime "created_at"
datetime "updated_at"

Setup Board Member Model

integer "board_id", null: false
integer "member_id", null: false
boolean "admin", default: false, null: false
datetime "created_at"
datetime "updated_at"

Cards Internal API

Built out internal API for Cards, actions: Index, Show, Delete, Create, Update, Destroy

TDD

Lists Internal API

Build out index, show, create, update, destroy, sort internal API for lists

Setup Card Comment Model

integer "card_id", null: false
integer "commenter_id", null: false
text "content"
datetime "created_at"
datetime "updated_at"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.