This project is a website where users can retrieve movie quotes. They can search for quotes using a search query and apply filters based on year and category.
- Search for movie quotes
- Filter quotes by year
- Filter quotes by category
- Ascending and descending sorting options for both year and category
- Option to go back to previous search result/ filter result.
- Frontend: React
- Backend: Node.js with Express
- Clone this repository:
git clone https://github.com/psankhe28/movie-quotes.git
- Navigate to the project directory:
cd movie-quotes
- Install dependencies:
- Frontend:
cd frontend && npm install
- Backend:
cd backend && npm install
- Frontend:
- Start the backend server:
cd backend && npm start
- Start the frontend development server:
cd frontend && npm start
- Open your browser and navigate to
http://localhost:3000
to view the website. - Open your browser and navigate to
http://localhost:5000
and you can use any api and test it.
/search/query=${query}
: GET endpoint to retrieve movie quotes based on search query and filters./years/query=${query}
: GET endpoint to retrieve years for the filter./categories/query=${query}
: GET endpoint to retrieve categories for the filter.