Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 750 Bytes

README.md

File metadata and controls

62 lines (40 loc) · 750 Bytes

TutorFast Frontend

Getting Started

First install the needed nodejs packages with

yarn

or

npm install

. Then this project can be run with a dev server locally with

yarn server

or

npm run server

.

The server can be accessed via localhost:3000.

Building Production Bundle

A production ready bundle.js can be made with

yarn build

or

npm run build

and can be found at build/bundle.js.

Serving Production Bundle

A production server can be run after generating bundle.js with

yarn start

or

npm start

. This server will serve everything in the build/ and html directories. So be careful what you put in those.