@@ -6,9 +6,10 @@ I'm Yohan Arias and this is the [Planning Poker](https://en.wikipedia.org/wiki/P
6
6
The app is build using NodeJS, VueJS including their respectives Frameworks (AdonisJS and Quasar).
7
7
These frameworks let us keep a clean code using best practices.
8
8
9
- ## The Planning Poker Dashboard
9
+ ## The Planning Poker System
10
10
11
- [ ![ See demo interface] ( https://user-images.githubusercontent.com/281727/100144788-13509980-2e76-11eb-8ae4-264f94928225.png )] ( https://codepen.io/emilioastarita/pen/NWRKWwv )
11
+ ![ See demo interface] ( ./screenshots/login.png )
12
+ ![ See demo interface] ( ./screenshots/dashboard.png )
12
13
13
14
### At backend layer we have a NodeJS app:
14
15
@@ -24,7 +25,7 @@ The Rest API has the following endpoints:
24
25
25
26
##### ` POST /issue/{:issue}/join ` - Used to join ` {:issue} ` .
26
27
- If issue not exists generate a new one.
27
- - Must receive a payload with the intended name. ie: ` {"name": "florencia "} `
28
+ - Must receive a payload with the intended name. ie: ` {"name": "Yurmira "} `
28
29
29
30
##### ` POST /issue/{:issue}/leave ` - Used to leave ` {:issue} ` .
30
31
- When the user wants leave the issue
@@ -41,9 +42,9 @@ The Rest API has the following endpoints:
41
42
{
42
43
"status": "voting",
43
44
"members": [
44
- {"name": "florencia ", "status": "voted"},
45
- {"name": "kut ", "status": "waiting"},
46
- {"name": "lucho ", "status": "passed"}
45
+ {"name": "Yurmira ", "status": "voted"},
46
+ {"name": "Juan ", "status": "waiting"},
47
+ {"name": "Yohan ", "status": "passed"}
47
48
]
48
49
}
49
50
````
@@ -52,9 +53,9 @@ The Rest API has the following endpoints:
52
53
{
53
54
"status": "reveal",
54
55
"members": [
55
- {"name": "florencia ", "status": "voted", "value": 20},
56
- {"name": "kut ", "status": "voted", "value": 20},
57
- {"name": "lucho ", "status": "passed"}
56
+ {"name": "Yurmira ", "status": "voted", "value": 20},
57
+ {"name": "Juan ", "status": "voted", "value": 20},
58
+ {"name": "Yohan ", "status": "passed"}
58
59
] ,
59
60
"avg": 20
60
61
}
@@ -96,5 +97,5 @@ Check if services are up and running:
96
97
97
98
## Unit testing
98
99
99
- - Run npm run test on backend_node
100
+ - Run ` npm run test` on backend_node
100
101
0 commit comments