62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
class Testdata:
|
|
name = "ScriptTest"
|
|
groups = 5 # Group0, Group1, Group2
|
|
#groups = {"admin": ["cklug", "mgoetz", "ckremitzl"]} # "admin" with 3 members
|
|
#groups = [["cklug", "mgoetz"]] # Group0 with 2 members
|
|
labels = {
|
|
"deliverable": "#ff0000",
|
|
"hint": "#00f000"
|
|
}
|
|
milestones = {
|
|
"ms1": {
|
|
"title": "Milestone 1",
|
|
"description": "The first milestone covers the game desgin basics (game design document), a firs architectural approach (e.g. UML diagram), and assignment of responsibilities",
|
|
"due_on": "2019-05-23T13:37:00Z"
|
|
},"ms2": {
|
|
"title": "Milestone 2",
|
|
"description": "Presentation of the final geogame (walktrough, demo, video,…)",
|
|
"due_on": "2019-07-22T13:37:00Z"
|
|
}
|
|
}
|
|
issues = [
|
|
{
|
|
"title": "Game design document",
|
|
"body": "Write a game design document.\nYou can use the template in the VC as starting point.",
|
|
"labels": ["hint", "deliverable"],
|
|
"milestone": "ms1"
|
|
},
|
|
{
|
|
"title": "Assign responsibilites",
|
|
"body": "Split the project into equal parts",
|
|
"labels": ["deliverable"],
|
|
"milestone": "ms1"
|
|
},
|
|
{
|
|
"title": "Learn Android",
|
|
"body": "Get to know Android, especially Activites with their lifecycle and Services (Remote, Local, bind/unBind, start/stop)",
|
|
"labels": ["hint"],
|
|
"milestone": "ms1"
|
|
},
|
|
{
|
|
"title": "Create Slides",
|
|
"body": "Presenting a word document (or A4 PDF) is cumbersome",
|
|
"labels": ["hint"],
|
|
"milestone": "ms1"
|
|
},
|
|
{
|
|
"title": "Implement App",
|
|
"body": "Do it",
|
|
"labels": ["deliverable"],
|
|
"milestone": "ms2"
|
|
},
|
|
{
|
|
"title": "Game design document",
|
|
"body": "Write a game design document.\nYou can use the template in the VC as starting point.",
|
|
"labels": ["hint", "deliverable"],
|
|
"milestone": "ms1"
|
|
},
|
|
{
|
|
"title": "have fun",
|
|
"body": "'nuff said"
|
|
}
|
|
] |