Giphy Buddy project app with React/Redux.
https://playgroundreact.firebaseapp.com/
Install the following.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"brew install yarnFrom the app's root directory, install the app's Node package dependencies.
yarn installNavigate to https://console.firebase.google.com Initialize a new Firebase project and populate your Firebase project configuration in ./src/actions/index.js Use the keys they give you when setting up a new project.
const firebaseConfig = {
apiKey: "",
authDomain: "",
databaseURL: ""
};In your Firebase console for your new project, navigate to Authentication and "Set up Sign-in Method". Click Email/Password & set the first option to enabled & press save. Next find Database in the side menu, scroll down to Create Database under Realtime Database. Start in test mode => Enable.
Run yarn start from the app's root directory for a development server.
Navigate to http://localhost:3000/. The app will automatically reload if you
change and save any of the source files.