A MiniNetflix web application developed with Angular
This project was generated with Angular CLI version 14.1.3.
- run
git clone https://github.com/gdkimaiyo/netflix.git
to clone the repository cd
into the project and on root folder, runyarn install
ornpm install
to install dependencies
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The application will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.
As a User:
-
I should be able to view all movies: The Movie Image, Movie Title, and Year of Production. ( Use APIs e.g themoviedb API)
-
I should be able to search for movie title with specific words.
-
I should be able to click on a movie and it should display more details about the movie like Rated, Released, - Runtime, Genre, Director, Writer, Actors, Plot, Language, Country, Awards any other you want to display.
-
I should be able to like movies / favourites and it should persist even if I refresh/reload the browser is (Use session storage)
-
I should see favorites page that shows my favorite movies
-
Show movie recomendations
-
Repeat above for TV Shows
Bonus:
- Implement authentication in express js where as a user, I can persist my favorite movies forever and remove movies from my favorites list. Use any DB of your choice.