This repo contains a possible solution for an interview task. The application aims to make it easy to search movies by title through the TMDB API. I have used the following libraries to create the application:
- Front-end application:
- React
- TypeScript
- Styled components
- Back-end application:
- NodeJs
- ExpressJs
- TypeScript
You can test the application here: http://biroda.gaborhegoczki.com
- Clone the repository from github
- Start the server:
- Navigate to the
api
folder. - Run
yarn
command to download all dependencies. - Run
yarn dev
to run the back-end server on your machine. Server will run on port5000
by default.
- Navigate to the
- Start the front-end application:
- Navigate to the
app
folder. - Run
yarn
command to download all dependencies. - Run
yarn start
to run the front-end application in your browser.
- Navigate to the
- Now you should be able to use the application 🚀