Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 1000 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 1000 Bytes

Levers for Progress codebase

Developed by Anson Yu and Kelvin Yu

Landing Page

This README file serves as basic documentation for the website to help future developers working on it.

Overview

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]
  • TailwindCSS for styling
    • Tailwind Typography for blog post formatting

Moon Landing

Setup

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 at localhost: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.