Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.25 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.25 KB

Spud's Digest

A movie catalog website based on the data provided from The Movie Database (TMDb)

This project was bootstrapped with Create React App.

The project development and workflow is being documented using Trello and can be accesed by visiting here or in the Boards tab of this project

How to run

Install Node.js from here Open terminal at the containing folder and run the following command

npm install
npm run start

Live version

Master is automatically deployed to heroku and can be seen here

Tests

run coverage report using npm test -- --coverage

Build

npm run build creates a build directory with a production build of your app. Set up your favorite HTTP server so that a visitor to your site is served index.html, and requests to static paths like /static/js/main..js are served with the contents of the /static/js/main..js file. (these instructions are from CRA more can be found here