diff --git a/README.md b/README.md index 58beeac..4de716c 100644 --- a/README.md +++ b/README.md @@ -1,70 +1,65 @@ -# Getting Started with Create React App +# Movie Poster Gallery -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). +![Project Logo](/assets/project.jpg) -## Available Scripts +A web application that allows users to browse and select their favorite movie posters based on their Letterboxd diary. -In the project directory, you can run: +## Features -### `npm start` +- **Letterboxd Integration**: Import your movie diary directly from uploading a CSV file. +- **Poster Gallery**: Browse through posters of movies you've watched. +- **User-friendly Interface**: Intuitive design for easy navigation and selection. +- **Responsive Design**: Works seamlessly on desktop and mobile devices. -Runs the app in the development mode.\ -Open [http://localhost:3000](http://localhost:3000) to view it in your browser. +## Getting Started -The page will reload when you make changes.\ -You may also see any lint errors in the console. +### Prerequisites -### `npm test` +- Node.js (v14.0.0 or later) +- npm (v6.0.0 or later) -Launches the test runner in the interactive watch mode.\ -See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. +### Installation -### `npm run build` +1. Clone the repository: -Builds the app for production to the `build` folder.\ -It correctly bundles React in production mode and optimizes the build for the best performance. + ``` + git clone https://github.com/Hugyouu/Letterboxd-Diary-Posters-Picker.git + ``` -The build is minified and the filenames include the hashes.\ -Your app is ready to be deployed! +2. Navigate to the project directory: -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + ``` + cd Letterboxd-Diary-Posters-Picker + ``` -### `npm run eject` +3. Install dependencies: -**Note: this is a one-way operation. Once you `eject`, you can't go back!** + ``` + npm install --legacy-peer-deps + ``` -If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. +4. Start the development server: -Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. + ``` + npm start + ``` -You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. +5. Open [http://localhost:3000](http://localhost:3000) to view it in the browser. -## Learn More +## Usage -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). +1. On the homepage, upload your diary CSV file. +2. Once processed, you'll be redirected to the Poster Selector page. +3. Browse through your watched movies and select your favorite posters. +4. (Add any additional steps or features here) -To learn React, check out the [React documentation](https://reactjs.org/). +## Technologies Used -### Code Splitting +- React.js +- Material-UI +- Backend private for now -This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) +## Acknowledgments -### Analyzing the Bundle Size - -This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) - -### Making a Progressive Web App - -This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) - -### Advanced Configuration - -This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) - -### Deployment - -This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) - -### `npm run build` fails to minify - -This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) +- [Letterboxd](https://letterboxd.com/) for the inspiration and data (diary.csv) +- [The Movie Database (TMDb)](https://www.themoviedb.org/) for the movie poster images diff --git a/assets/project.jpg b/assets/project.jpg new file mode 100644 index 0000000..a522d82 Binary files /dev/null and b/assets/project.jpg differ