Skip to content

denkyl08/TeamDevApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TeamDevApp

A simple, scriptable, real-time collaborative web app for testing and development teams.

###ToDos###

  1. Project Nav
  • Build backend for servicing project list queries (can contain mock data for now)
  1. Chat
  • Add timestamp data
  • real-time angular chat service (long-polling or socket.IO?)
  • WYSIWYG editor?
  1. Search Functionality

###RESTful API### For maximum flexibility/scriptability we will need a RESTful API Proposal:

/api/projectlist

[
	{
		properties : {
			title: "projectName1", 
			id: 1234
		},		
		children : [
		]
	}
]

/api/project/[id]

{
  properties : {
    title: "projectName1",
    id: 1234
  },
  chatLog : [
    {
      username: "Kyle",
      id: 0,
      timestamp: 2456675434,
      text : "first post!"
    }
  ]
  custom: {
    whateverCustomProperty: "example",
    listOfThingsToDo: [
      {1: "file bug"},
      {2: "fix"},
      {3: "test fix"}
    ]
  }
}

About

A simple, scriptable, real-time collaborative web app.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published