Use nvm to install Node.js and npm:
$ nvm install
$ nvm useInstall dependencies:
$ npm installStart the dev server:
$ make devCreate a new post at src/posts/example-slug.md:
$ make post slug=example-slugFormat code:
$ make prettierLint code:
$ make lintA GitHub Actions workflow handles deployment on pushes to master. To build the site for deployment locally:
$ make buildTo run the deployment script locally, install the AWS CLI, then run:
$ make deploy