Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Latest commit

 

History

History
36 lines (23 loc) · 818 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 818 Bytes

BMS-front-end

A very simple interface based on Paperbase to learn Next.js (even though there's no need for SSR) and Material UI and of course finish the course project in a fancier way..

Usage

First, you can clone this repository:

git clone https://github.com/BMS-2021/BMS-front-end.git

Install the dependencies:

yarn install

Run

Start the development server:

yarn dev

Visit http://localhost:3000 to have a look~

Build

For production build & deployment, a Dockerfile is simply copied from nextjs.org:

docker build . -t bms-front-end
docker run -p 3000:3000 --name bms-front-end bms-front-end