Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1015 Bytes

README.md

File metadata and controls

49 lines (32 loc) · 1015 Bytes

MovieTracker

MovieTracker application

Movie tracker is a dynamic single page application for quickly looking up movies that are still in theaters. Quickly find what you want to see, watch the trailer, and save it to your favorites for later viewing! MovieTracker was built using React, Redux, and React Router and is fully tested using Enzyme and Jest.

To get started, get the server up and running:

Make sure you have PostgreSQL setup on your machine, clone the server repo:

git clone https://github.com/turingschool-examples/movie-tracker

Then run:

npm install && npm start

To run the front-end, in a new terminal window run:

git clone https://github.com/GraySmith00/movie-tracker-client

Install the dependencies

npm install

Start the application

npm start

To run the testing suites, run:

npm test

To check for any linter errors, run:

npm run eslint