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.gitInstall the dependencies:
yarn installStart the development server:
yarn devVisit 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