To report issues or propose new features for this repository, visit our tracker.
This is the official Rhino Linux Wiki, built with Nextra.
Click the button to clone this repository and deploy it on Vercel:
Set the following repository secrets for GitHub Actions:
- generate an ssh keygen pair and set
SSH_USER
,SSH_IP
,SSH_DIR
, andSSH_KEY
:SSH_USER
- the host userSSH_IP
- the IP of the serverSSH_DIR
- the desired directory to copy toSSH_KEY
- the contents of the generatedsite_build_key
file:
# generate key
ssh-keygen -t ed25519 -C "github-actions@site-build" -f site_build_key < /dev/null
# allow key to login to user
mkdir -p ~/.ssh
cat site_build_key.pub >> ~/.ssh/authorized_keys
# print key result to set SSH_KEY - DO NOT SHARE!!
cat site_build_key
- The workflow will run:
- On any changes to the
main
branch - Manually on dispatch
- For security, it will always checkout from
main
, even if requesting dispatch on an alternate branch
- For security, it will always checkout from
- On any changes to the
First, run pnpm i
to install the dependencies.
Then, run:
pnpm run dev
This will start the development server at localhost:3000
, or if port :3000
is taken up, the next accessible port (e.g. :3001
).
This will also keep tailwindcss
running while you work, so div
entries in wiki pages and input.css
changes are properly added.
This project is licensed under the MIT License.