Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 466 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 466 Bytes

MEVN-MyFirstProject

How to run?

Server

cd server

// install all packages
npm install || yarn

// run development server
npm run dev || yarn dev

// run production server
npm run serve || yarn serve

Client

cd client

// install all packages
npm install || yarn

// run development server
npm run dev || yarn dev

// build app to production
npm run build || yarn build

// start production server
npm run serve || yarn serve