Skip to content

Latest commit

 

History

History
104 lines (73 loc) · 3.13 KB

README.md

File metadata and controls

104 lines (73 loc) · 3.13 KB

Movie Recommender System - Your Ultimate Cinematic Companion 🎥💥

🎬 "Cinematic Companion" 🎬

Discover your next favorite movie effortlessly with Cinematic Companion! 🌟This ultimate movie recommender system personalizes recommendations based on your unique tastes. 🤖 Whether you're into action-packed thrillers, heartwarming dramas, or side-splitting comedies, we've got something for everyone. 🍿 Say goodbye to endless scrolling and hello to movie magic! ✨ Join the adventure with Cinematic Companion today. 🎉

🎯 Goal of this project

At its core, this project embodies two important aims:

  1. Start Your Open Source Journey: It's aimed to kickstart your open-source journey. Here, you'll learn the basics of Git and get a solid grip on the Machine Learning and I strongly believe that learning and building should go hand in hand.
  2. Python Mastery: Once you've got the basics down, a whole new adventure begins of mastering Python. This project covers everything, from simple Python Code to advanced performance enhancements. And I've planned much more cool stuff to add in the near future if the project hits more number of contributors.

I'd love for you to make the most of this project - it's all about learning, helping, and growing in the open-source world.

Setting up the project locally

  1. Fork and Clone the Repository

    git clone https://github.com/{your-username}/Movie_Recommender_System.git
  2. Add your fork as a local project:

    # Using HTTPS
    git clone https://github.com/YOUR-USERNAME/Movie_Recommender_System.git
    # Using SSH
    git clone [email protected]:YOUR-USERNAME/Moview_Recommender_System.git
  3. Add git remote controls:

       # Using HTTPS
       git remote add fork https://github.com/YOUR-USERNAME/Movie_Recommender_System.git
       git remote add upstream https://github.com/krishnaacharyaa/Movie_Recommender_System.git
        # Using SSH
         git remote add fork [email protected]:YOUR-USERNAME/Movie_Recommender_System.git
         git remote add upstream [email protected]:krishnaacharyaa/Movie_Recommender_System.git
  4. Verify that you have your two git remotes:

      git remote -v
  5. For every individual PR follow these 2 steps:

  • To stay up to date with the central repository:

     git pull upstream main
  • Checkout a private from your main Branch

      # Switch to the main branch
      git switch main
    
      # Pull down any upstream changes
      git pull
    
      # Create a new branch to work on
      git switch --create bugfix/1234-name-of-the-issue

Commands to contribute uing AWS EC2 instance

  • Making directory
       mkdir <Directory name>
  • Initialising git
       git init
  • Check the status
       git status
  • Add the file from the Working space to the Staging Area
       git add <filename>
       git add . # TO add All file
  • Commit to the file
       git commit -m "<Message>"