-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: README instructions & package name
- Loading branch information
1 parent
21a1c71
commit 498e29c
Showing
2 changed files
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,42 @@ | ||
# Study Saturday: Week 2 | ||
|
||
Express and Sequelize Review | ||
|
||
## Objective: Build a fully-functioning CRUD API for 2 models, Students and Tests. Test specs are provided to guide development. | ||
|
||
### Details | ||
|
||
- Necessary Models: | ||
- Student | ||
- Test | ||
- Necessary Models: | ||
- Student | ||
- Test | ||
|
||
- Necessary routes: | ||
- Necessary routes: | ||
|
||
- Get all students | ||
- Get all students | ||
|
||
- Get all test scores | ||
- Get all test scores | ||
|
||
- Update student name | ||
- Update student name | ||
|
||
- Update test score | ||
- Update test score | ||
|
||
- Get mean test score by student ID | ||
- Get mean test score by student ID | ||
|
||
- Get top scoring student | ||
- Get top scoring student | ||
|
||
- Delete Student | ||
- Delete Student | ||
|
||
- Delete Score | ||
- Delete Score | ||
|
||
- Add Student | ||
- Add Student | ||
|
||
- Add Score | ||
- Add Score | ||
|
||
### Instructions | ||
|
||
Instructions will be provided by the fellow. Each coding portion will take 45 minutes followed by a 15-minute review with the fellow. There is also a 45 minutes lunch break in the middle. | ||
For each cycle please only complete the relevant test specs block, it will be marked with .only notation. | ||
|
||
### How to test routes with specs | ||
- `npm t` | ||
|
||
- `npm t` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters