Skip to content
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
26 changes: 26 additions & 0 deletions projects/react/netflix-reactJs-main/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

.env

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
.env
21 changes: 21 additions & 0 deletions projects/react/netflix-reactJs-main/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Jayant Ghadge

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
66 changes: 66 additions & 0 deletions projects/react/netflix-reactJs-main/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Netflix Clone

Netflix Clone is a web application built using React, Tailwind CSS, and Firebase. It offers a seamless way to browse and watch movies and TV shows, providing a user-friendly interface similar to the popular streaming platform, Netflix.

Creating a Netflix clone using React.js and Firebase involves building a web application that replicates the key features and design of the Netflix platform. React.js is used for the frontend development, providing a dynamic and efficient user interface, while Firebase is employed for the backend, handling authentication, data storage, and hosting.

## Installation

To install and run Noteify on your local machine, follow the steps below:

1. Clone the repository to your local machine:

```
git clone https://github.com/jayantghadge/noteify.git
```

2. Navigate to the project directory:

```
cd noteify
```

3. Install the required dependencies using npm:

```
npm install
```

4. Start the development server:

```
npm start
```

## Usage

Once the development server has started, the Netflix Clone will open in your default browser at `http://localhost:3000/`. You can explore various movie categories, search for specific movies or TV shows, and add them to your watchlist. If you're not signed in, you'll be prompted to log in or sign up to access certain features like creating a watchlist.

To add a movie or TV show to your watchlist, click on the "like" button on top left. You can manage your watchlist by clicking on the account button.

### Watching Trailers

Clicking on a particular movie will redirect you to it's trailer or a related video on YouTube.

## Features

- Browse and search for movies
- Categorized movie selection for easy exploration
- Create your own watchlist to save favorite content
- User authentication and personalized recommendations
- Firebase integration for data storage and authentication
- Modern and user-friendly interface inspired by Netflix

## Links

- Live Site URL: https://netflix-react-js-jayantghadge.vercel.app

## Contributing

If you're interested in contributing to Noteify, we welcome any bug reports, feature requests, or pull requests. To contribute:

1. Fork the repository
2. Create a new branch for your changes: `git checkout -b my-new-feature`
3. Make your changes and commit them: `git commit -am 'Add some feature'`
4. Push your changes to your fork: `git push origin my-new-feature`
5. Submit a pull request to the `main` branch of the original repository
Loading