Skip to content

Latest commit

 

History

History
59 lines (43 loc) · 1.74 KB

CONTRIBUTING.md

File metadata and controls

59 lines (43 loc) · 1.74 KB

Development Guide

VScode

Instead of setting up prettier and eslint as dev dependencies, we'll just use VScode extensions and custimized settings.

Must

Recommendations


To get started

First clone this repo

> git clone https://github.com/badger-advisor/madflow.git

Next, from the root directory

Install all dependencies

> npm run dev-install

This will install dependencies for both the server and the client

Serve app

> npm run dev

This will serve both the server on http://localhost:8080 and the frontend on http://localhost:3000

Only serve frontend

> npm run client

or if in client/ already

npm start

Only serve backend

> 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.