A full-stack Netflix clone application built with modern web technologies.
Before running the application, make sure you have the following installed:
- Node.js (version 14.0 or higher)
- npm (Node Package Manager)
- Clone the repository:
git clone
cd netflix-clone
- Install Frontend Dependencies:
cd frontend
npm install
- Install Backend Dependencies:
cd ../backend
npm install
To start the frontend development server:
cd frontend
npm run dev
The frontend will be available at http://localhost:5173
(or your configured port)
To start the backend server:
cd backend
npm run dev
The backend will be available at http://localhost:3000
(or your configured port)
For development, you'll need to run both the frontend and backend servers simultaneously. Open two terminal windows and run each server separately following the steps above.
Make sure both servers are running for the application to work properly.