Developed by Anson Yu and Kelvin Yu
This README file serves as basic documentation for the website to help future developers working on it.
This website uses:
- NextJS as the overall framework
- this makes it easy to find the file corresponding to a URL: just go to
pages/[route]
- this makes it easy to find the file corresponding to a URL: just go to
- TailwindCSS for styling
- Tailwind Typography for blog post formatting
Set up how you would a normal Node/React/NextJS project. After cloning the repo:
- run
npm i
to install packages - run
npm run dev
to start a hot-refreshing preview atlocalhost:3000
- run
npm run build
to build the site. This will be run when deploying, ex. by a CI/CD service. If the build is failing in CI/CD, it can be useful to test locally.