Code for my talk on Frontend Management With React Apollo LinkedIn replica. Allows creating workers and organizations
There are a few dependencies to the app. Docker is required to run the MongoDB database. Node (atleast v7.10.1 and NPM v5) and yarn are required for running the apps Once the repo has been cloned, in the api directory install modules and start up the docker image:
cd api/
yarn
yarn db:start
Once that is done, you can start the api by running
yarn start:watch
Once that is done open up a new terminal tab and navigate back to the app directory and start the React app
cd app/
yarn
yarn start
The React app will be running on http://localhost:1234