-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.txt
91 lines (65 loc) · 2.02 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
Trello scrum board
Scrum master: Henry
Stories break down into tasks.
Tasks uploaded to git, create pull requests for peer review and ultimately trainer review.
Story estimations:
Story 1:
As a collector
I want to be able to see stored information about my collection
So that I can show off to my friends
5 points
Story 2:
As a collector
I want to be able to add new items to my collection
So that I can expand my collection
3 points
Git structure
main
↪ story1-{story name}
↪ s1task1-{task name}
↪ s1task2-{task name}
↪ s1task3-{task name}
↪ story2-{story name}
↪ s2task1-{task name}
↪ s2task2-{task name}
When you have finished a task, you will make a pull request for peer review.
Once peer reviewed, merge into main.
Once story completed it is ready for trainer review.
.DS_Store (gitignore)
git checkout -b story1_mvp
git checkout -b story1_wireframe
----------------------------------------------------
ADD THIS TO SNIPPETS:
UPDATE `films`
SET `Language` = REPLACE(`Language`, CHAR(13), '');
So, there were [character code 13] items at the end of each Language` string. This is how I got rid of them.
----------------------------------------------------
||||||| Old File
=======
Trello scrum board
Scrum master: Henry
Stories break down into tasks.
Tasks uploaded to git, create pull requests for peer review and ultimately trainer review.
Story estimations:
Story 1:
As a collector
I want to be able to see stored information about my collection
So that I can show off to my friends
5 points
Story 2:
As a collector
I want to be able to add new items to my collection
So that I can expand my collection
3 points
Git structure
main
↪ story1-{story name}
↪ s1task1-{task name}
↪ s1task2-{task name}
↪ s1task3-{task name}
↪ story2-{story name}
↪ s2task1-{task name}
↪ s2task2-{task name}
When you have finished a task, you will make a pull request for peer review.
Once peer reviewed, merge into main.
Once story completed it is ready for trainer review.