You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Can't find a team? No problem. Fly solo and keep all the glory.
13
13
14
14
## Things to Keep in Mind
15
15
16
-
* Not sure where to start? Try the [Universal React Boilerplate](https://github.com/cloverfield-tools/universal-react-boilerplate#universal-react-boilerplate) or take a peak at some [sample code](https://github.com/ericelliott/checkin).
16
+
* Not sure where to start? Try [Next.js](https://zeit.co/blog/next).
17
17
* Don't export any classes. If you need to instantiate anything, use a factory function.
18
18
* Use **pure functions** wherever you can. A pure function does not mutate anything outside itself. A pure function does not produce side effects. Given the same inputs, a pure function will always return the same output.
19
19
* Notice how much of the program state can be represented as lists of things:
@@ -44,7 +44,7 @@ Don't worry about anything but getting the user interfaces to work. No need for
44
44
45
45
* Allow a user to create and name teams. Users own the teams they create.
46
46
* Allow a user to check in with a specific team and answer each of the three scrum questions.
47
-
* View the team status: A simple display of each user's most recent checkin.
47
+
* View the team status: A simple display of all the team's checkins for today (or any day in the past).
48
48
49
49
Here's a simple mock-up of the checkin feature. Feel free to improve on the UI:
50
50
@@ -54,14 +54,14 @@ Here's a simple mock-up of the checkin feature. Feel free to improve on the UI:
54
54
### Mid Level Requirements
55
55
56
56
* Allow a user to join an existing team.
57
-
* Store data on a remote server and let other users sign up. Consider trying [Horizon](http://horizon.io/).
57
+
* Store data on a remote server and let other users sign up.
58
58
59
59
60
60
### Advanced Requirements
61
61
62
62
* Integrate with Github and let users link updates to the current issue they're working on.
63
63
* Automate checkin updates by adding assigned project issues from GitHub to the user's status.
64
-
* Add realtime capability and update the status when another user checks in.
64
+
* Add realtime capability and update today's checkins view when another user checks in.
0 commit comments