Personal book library & recommender — Rails 8, Hotwire, Ollama, Kamal
No build step — the app uses importmaps and Propshaft.
| Tool | Purpose | Install |
|---|---|---|
| StandardRB | Ruby formatter/linter | bundle install |
| Herb | ERB formatter | brew install herb |
| Biome | JS formatter/linter | brew install biome |
Activate the versioned hook on a fresh clone:
git config core.hooksPath .githooksThe hook auto-formats staged .rb, .html.erb, and .js files before each commit. Herb and Biome are skipped gracefully if not installed.
bin/standardrb --fix # Ruby
herb fmt app/views/**/*.erb # ERB
bin/biome format --write . # JavaScript