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..
First, you can clone this repository:
git clone https://github.com/BMS-2021/BMS-front-end.git
Install the dependencies:
yarn install
Start the development server:
yarn dev
Visit http://localhost:3000 to have a look~
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