Simple movie manager
A simple platform where you can search for movies, add it to favourites, to watch later and see informatiosn about it.
You can find a demo here
First of all you need to have nodejs installed. So, if you don't have it, install with you package manager or download it from nodejs and install.
Now that you have nodejs installed, you need to clone this project into your device https://github.com/carlosberti/movieau.git.
First, install all dependencies:
npm install
# or
yarn installNow you are able to run the storybook server:
npm run storybook
# or
yarn storybookIt will open http://localhost:6006/ in your browser
To see the WebApp, run the development server:
npm run dev
# or
yarn devOpen http://localhost:3000/ in your browser
If you feel like you have something to add to the project, please read our Contributing Guide before submitting a Pull Request.

