Skip to content

Unpackerr/unpackerr.github.io

Repository files navigation

unpackerr.zip

This repository contains the source and files that create https://unpackerr.zip.

Website

This website is built using Docusaurus 2, a modern static website generator.

Installation

Clone the repo, then cd into the new folder and run this first.

yarn install

Local Development

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

Build

This command generates static content into the build directory and can be served using apache or nginx, etc.

yarn build

Deployment

Github Actions automatically builds the main branch and pushes it to the gh-pages branch.

Contributing

  1. Fork the repo.
  2. Make your changes; test them with yarn.
  3. Test docs/ with mdl docs and codespell docs.
  4. Make a pull request.
  5. Bug me on Discord if I don't respond in a timely manner.

MDL Linter

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 docs

Seriously, run mdl before commititng.

Codespell

brew install codespell