This is the GitHub Pages site for harpertoken, featuring a profile page for Harper with information on open source tools, kernel development, and CI/CD pipelines.
Visit the live site at: https://harpertoken.github.io
To run locally:
- Clone the repository.
- Open
index.htmlin your web browser.
No build process is required as it's a static HTML site.
This project uses conventional commit standards.
When creating a GitHub Discussion, choose a category that best matches the topic. For discussions about documentation tone, style, and guidance, we recommend one of the following categories:
- Ideas: For exploratory or design-focused topics. This is often the best fit.
- Documentation: For topics specific to this repository's documentation (use if this category exists).
- General: As a catch-all if no other category is a good fit.
To enable the commit-msg hook, copy it to your .git/hooks/ directory:
cp scripts/commit-msg .git/hooks/commit-msg
chmod +x .git/hooks/commit-msgCommit messages must:
- Start with a conventional type: feat, fix, docs, style, refactor, test, chore, perf, ci, build, revert
- Be lowercase
- First line ≤60 characters
To clean up existing commit messages, run:
./scripts/rewrite_msg.shThen force-push:
git push --force origin main