This is a working draft of a research project, supporting a local internship program :)
First, run the development server:
npm i
npm run dev
Open http://localhost:3000 with your browser to see the result.
Publish to https://stateofcobalt.org
First, build locally:
npm run build
This will generate the /docs
folder (which is one of the only subdirectories GitHub allows for it's pages. If/when we move to AWS this'll change to next.js's default /out
).
Then, checkout to a fresh branch, commit your changes, and create a PR.
git checkout [user]/[branch-name]
git add .
git commit -m "[briefly state the changes]"
git push
Example:
git checkout matt/update-readme
git add .
git commit -m "add examples to readme file"
git push
Credit for useful things: