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.
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