Instead of setting up prettier and eslint as dev dependencies, we'll just use VScode extensions and custimized settings.
- Visual Studio IntelliCode
- npm Intelliscense
- path Intelliscense
- Bracket Pair Colorizer 2
- ES7 React/Redux/GraphQL/React-Native snippets
First clone this repo
> git clone https://github.com/badger-advisor/madflow.git
Next, from the root directory
> npm run dev-install
This will install dependencies for both the server and the client
> npm run dev
This will serve both the server on http://localhost:8080
and the frontend on http://localhost:3000
> npm run client
or if in client/
already
npm start
> npm run server
This will start up nodemon, and all changes made will be updated in the server immediately, no need to restart the server each time.