Skip to content

Commit 8df85b2

Browse files
authored
Update README.md
1 parent 250f91a commit 8df85b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Can't find a team? No problem. Fly solo and keep all the glory.
1313

1414
## Things to Keep in Mind
1515

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).
1717
* Don't export any classes. If you need to instantiate anything, use a factory function.
1818
* 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.
1919
* 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
4444

4545
* Allow a user to create and name teams. Users own the teams they create.
4646
* 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).
4848

4949
Here's a simple mock-up of the checkin feature. Feel free to improve on the UI:
5050

@@ -54,14 +54,14 @@ Here's a simple mock-up of the checkin feature. Feel free to improve on the UI:
5454
### Mid Level Requirements
5555

5656
* 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.
5858

5959

6060
### Advanced Requirements
6161

6262
* Integrate with Github and let users link updates to the current issue they're working on.
6363
* 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.
6565

6666
## To Implement:
6767

0 commit comments

Comments
 (0)