Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Index #3

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": ["eslint:recommended"],
"env": {
"browser": true,
"node":true
}
}
3 changes: 2 additions & 1 deletion .gitignore/.gitignore → .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules

# Logs
logs
*.log
Expand Down Expand Up @@ -56,4 +58,3 @@ typings/

# dotenv environment variables file
.env

28 changes: 19 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,43 @@
# week-5-CADJ


## WHY (describing the purpose)

Abdullah spends so much time trying to find a movie to watch that he ends up not watching one.
Abdullah spends so much time trying to find a movie to watch that he ends up not watching one at all. He would like to be able to choose a year and/or a genre and get a random movie suggestion fitting those requirements.

A movie discovery website
He would like to see the movies poster, a summary, it's release data and running time and a review if possible. It would be nice if he could see a trailer for the movie aswell.

## WHAT (describing your site)

FilmByte returns a random film based on a chose genre and year a user selects.

### User Stories

As a user, I can:

1. Enter a date between 1896-2017
2. Select a genre from a dropdown menu
3. Get a random movie suggestion

### Stretch Goals
- [ ] stretch 1
- [ ] stretch 2
- [ ] stretch 3
- [ ] Add review to movie info
- [ ] Be able to search for a movie
- [ ] Movie suggestion in modal box

## HOW (describing the journey to completion)


### Architecture


#### Drawing out our user experience


#### Separation of Concerns

### Data Storage and Retrival

### API transport considerations
### API

### DOM Manipulation

### Useful Links


Loading