Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 463 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 463 Bytes

Fullstack template

This template will give you an express server and react client. You can run both at the same time with one command.

Getting started

After cloning this template, do the following to get going

install root dependencies

npm install

install the server dependencies

cd server
npm install
cd ..

install client dependencies

cd client
npm install
cd ..

start the client and the server together

npm start