Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 1.5 KB

README.md

File metadata and controls

50 lines (29 loc) · 1.5 KB

Recomate logo

Recomate — Film suggestion app.

The app is developed with the use of MERN stack technologies

The app can recommend a film that you would most likely enjoy according to either your direct input or, if you have an account, films that you've checked in the app so far. You can check the film's synopsis, cast, genres and trailer.

In its core the app leverages the Tastedive API for the suggestion functionality and TMDB API to fetch particular film data

How to contribute to the Recomate:

‼ You need Git and Node installed in your system

  1. Fork this repository

  2. Clone the forked repository to your machine

    in your terminal enter:

    git clone https://github.com/Lamer217/Recomate.git

  3. Install the required node packages via npm:

    in your terminal enter:

    cd /Recomate

    npm i

    after successful command execution enter:

    cd /client

    npm i

  4. Run the development scripts (starting the React and Server daemons):

  5. In your terminal check the directory to be Recomate/client

    enter the following command:

    npm start

  6. Now you should be able to open the app in your browser at: http://localhost:5005/

  7. After successful changes commit and push to your repository:

    cd /Recomate

    git add .

    git commit -m <describe the change>

    git push origin master

  8. Open new pull request