Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.33 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.33 KB

Movies app

This repository (fc-frontend) contains a react app corresponding with the front end app for Movies app.

This app was created using create-react-app https://github.com/facebook/create-react-app.

It use @apollo/client (https://github.com/apollographql/apollo-client) to connect with our backend (https://github.com/matoscano/fc-backend).

Also include custom css for the style, mostly using styled-components approach (https://styled-components.com/)

It use storybook for preview our UI components(https://storybook.js.org/). Also use react testing library to test our components(https://testing-library.com/)

It use Formik for create forms(https://formik.org/).

⚛️ How to run locally

Using the command yarn start the app runs in development mode.

IMPORTANT: We need to provide the url of our backend. Provide a .env file with the valid REACT_APP_FC_API_URL key.

🛠 Ready to deploy

Using the command yarn build builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

🚀 Technologies stack

  • React.js
  • GraphQl (Apollo client)
  • HTML & CSS
  • Styled-components
  • Formik
  • Storybook
  • Jest & react testing library