Skip to content

eval-hub/eval-hub.github.io

Repository files navigation

eval-hub.github.io

Documentation site for EvalHub.

Overview

This repository contains the source for the EvalHub documentation built with Astro/Starlight.

Deployment

Automatic Deployment

Documentation is automatically built and deployed to GitHub Pages when changes are pushed to the main branch.

Adding Blog Posts

Blog posts live in src/content/docs/blog/. Create a new Markdown file there with this frontmatter:

---
title: "Your Post Title"
date: 2026-05-02T00:00:00.000Z
authors:
  - evalhub
excerpt: >
  A short summary shown in the blog index.
---

Post content goes here.
  • date controls the publish date and sort order.
  • authors must match a key defined in the starlightBlog authors config in astro.config.mjs.
  • The filename becomes the URL slug (e.g. my-post.md/blog/my-post/).

License

See the LICENSE file for details.