Skip to content

leds-org/leds-tools-made

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

MADE

It is a plugin that empowers the Scrum Master and the development team to create the backlog and sprints based on processes that can be reused and standardized throughout the project and/or across different projects.

Install

To install the plugin, there are two methods. For the first method, follow these steps:

  1. Download the plugin,
  2. Open Visual Studio Code
  3. Right-click and then select "Install Extension VSIX" to initiate the installation.

The second method follow these steps:

  1. Open the VSCode
  2. Click in Extensions
  3. Search : MADE-Leds
  4. Click in Install

Usage

Right-click on your .made file and select "Synchronize With Project Management"
image with the right-click menu

Components

Project:

Define the project configuration and the token for creating the project in your project manager.

project "project-name"{
  id: projectid
  description: "project description"
  email: "email of the project editor"
  host: "host.project.net"
  token: "the api token"
}

Team:

Define a team and inside of it define the members of the team

team TeamID {
    name: "team name"
    description: "team description"
    
    teammember memberid {
      name: "member name" 
      email:"[email protected]"
      }
}

Timebox:

Define the timebox its responsibles, planning and performed

timebox timeboxid {
    name: "timebox name"
    description: "timebox description"
    startDate: "01/01/2024"
    endDate: "12/12/2024"

    responsible: TeamID.memberid 

    planning {
        item: "planning item" assignee: "member name"
    } 

    performed{
        item: "performed item" status: DOING
    }
}

Process:

Define the project and its activities.

process processID {
    name: "process name"
    description: "process description"

    activity activityID{
        name: "activity name"
        description: "activity description"
    }
}

BackLog:

Define the backlog its epics and user stories.

backlog BackLogID  {
    name: "backlog name"
    description: "backlog description"
    epic EpicId {
        name: "Epic name"
        process: processID
    }
    userstory userstoryId {
        name: "User story name"
        activity: processID.activityID
    }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •