This repository contains the source and files that create https://unpackerr.zip.
This website is built using Docusaurus 2, a modern static website generator.
Clone the repo, then cd into the new folder and run this first.
yarn install
Use this when developing locally!
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
yarn start
This command generates static content into the build
directory and can be served using apache or nginx, etc.
yarn build
Github Actions automatically builds the main
branch and pushes it to the gh-pages
branch.
- Fork the repo.
- Make your changes; test them with
yarn
. - Test
docs/
withmdl docs
andcodespell docs
. - Make a pull request.
- Bug me on Discord if I don't respond in a timely manner.
To run the linter locally, I had to do this on my Mac, but bundler
may work too.
GH actions runs a newer version than 0.11.0, but this worked for me for something.
brew install rbenv ruby-build
rbenv install 3.2.2
eval "$(rbenv init -)"
rbenv shell 3.2.2
gem install --no-document mdl
mdl -g docs
Seriously, run mdl before committing.
brew install codespell