Browse Source

reviewed and good to merge

content-update
lee 5 years ago
parent
commit
c4dc5636f0
  1. 19
      subjects/groupie-trackers/groupie-trackers.audit.en.md
  2. 10
      subjects/groupie-trackers/groupie-trackers.en.md

19
subjects/groupie-trackers/groupie-trackers.audit.en.md

@ -4,7 +4,7 @@
###### Is data from the relations being used? ###### Is data from the relations being used?
##### Try to see the "members" for the band `"Queen"` ##### Try to see the "members" for the artist/band `"Queen"`
``` ```
"Freddie Mercury", "Freddie Mercury",
"Brian May", "Brian May",
@ -16,13 +16,13 @@
``` ```
###### Does it present the right "member", as above? ###### Does it present the right "member", as above?
##### Try to see the "firstAlbum" for the band `"Gorillaz"` ##### Try to see the "firstAlbum" for the artist/band `"Gorillaz"`
``` ```
"26-03-2001" "26-03-2001"
``` ```
###### Does it present the right date for the "firstAlbum", as above? ###### Does it present the right date for the "firstAlbum", as above?
##### Try to see the "locations" for the band `"Travis Scott"` ##### Try to see the "locations" for the artist/band `"Travis Scott"`
``` ```
"las_vegas-usa" "las_vegas-usa"
"brooklyn-usa" "brooklyn-usa"
@ -35,7 +35,7 @@
``` ```
###### Does it present the right "locations" as above? ###### Does it present the right "locations" as above?
##### Try to see the ""members"" for the band `"Foo Fighters"`. ##### Try to see the ""members"" for the artist/band `"Foo Fighters"`.
``` ```
"Dave Grohl" "Dave Grohl"
"Nate Mendel" "Nate Mendel"
@ -46,9 +46,9 @@
``` ```
###### Does it present the right members as above? ###### Does it present the right members as above?
##### Try to trigger an event using some kind of action, (ex: Clicking the mouse over a certain element, hovering the cursor over a certain element. Pressing a key on the keyboard. Resizing or closing the browser window. A form being submitted. A video being played, or paused, or finishing play. An error occurring. Etc) ##### Try to trigger an event using some kind of action (ex: Clicking the mouse over a certain element, pressing a key on the keyboard, resizing or closing the browser window, a form being submitted, an error occurring, etc).
###### Does the event responds as expected? ###### Does the event responds as expected?
###### Did the server crashed? ###### Did the server crashed?
###### Does the server use the right [HTTP method](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods)? ###### Does the server use the right [HTTP method](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods)?
###### Has the website runned without crashing at anytime? ###### Has the website runned without crashing at anytime?
@ -60,15 +60,12 @@
#### General #### General
###### +Does the event system run as asynchronous? Does the code present go routines or channels? ###### +Does the event system run as asynchronous? (usage of go routines and channels)
###### +Is the site hosted or deployed? Can you access the website through a DNS (Domain Name System)? ###### +Is the site hosted or deployed? Can you access the website through a DNS (Domain Name System)?
#### Basic #### Basic
###### +Does the code obey the [good practices](https://github.com/01-edu/public/blob/master/subjects/good-practices.en.md)? ###### +Does the code obey the [good practices](https://github.com/01-edu/public/blob/master/subjects/good-practices.en.md)?
###### +Are the instructions in the website clear?
###### +Does the project run using an API?
###### +Can you export in multiple formats?
#### Social #### Social

10
subjects/groupie-trackers/groupie-trackers.en.md

@ -2,19 +2,19 @@
### Objectives ### Objectives
Groupie Trackers consists on receiving a given API and manipulate the data contained in it, in order to create a site, displaying all or part of the information. Groupie Trackers consists on receiving a given API and manipulate the data contained in it, in order to create a site, displaying the information.
- It will be given an [API](https://groupietrackers.herokuapp.com/api), that consists in four parts: - It will be given an [API](https://groupietrackers.herokuapp.com/api), that consists in four parts:
- The first one, `artists`, containing information about some bands and artists like their name(s), image, in which year they began their activity and the date of their first album. - The first one, `artists`, containing information about some bands and artists like their name(s), image, in which year they began their activity, the date of their first album and the members.
- The second one, `locations`, consists in their last and/or upcoming concert locations. - The second one, `locations`, consists in their last and/or upcoming concert locations.
- The third one, `dates`, consists in their last and/or upcoming concert dates. - The third one, `dates`, consists in their last and/or upcoming concert dates.
- And the last one, `relations`, does the link between all the other parts, `artists`, `dates` and `locations`. - And the last one, `relation`, does the link between all the other parts, `artists`, `dates` and `locations`.
- It should be used at least the `artists` and `relations` parts given in the API. - It should be used at least the `artists` and the `relation` parts given in the API.
- Given all this you should build a user friendly website where you can display the bands info through several data visualizations (examples : blocks, cards, tables, list, pages, graphics, etc). It is up to you to decide which info you will present and how you will display it. - Given all this you should build a user friendly website where you can display the bands info through several data visualizations (examples : blocks, cards, tables, list, pages, graphics, etc). It is up to you to decide which info you will present and how you will display it.
@ -38,4 +38,4 @@ This project will help you learn about :
### Usage ### Usage
- You can see an example of a RESTapi [here](https://rickandmortyapi.com/) - You can see an example of a RESTful API [here](https://rickandmortyapi.com/)

Loading…
Cancel
Save