Files
LocalAI/website
Ettore Di Giacinto 607f04afcc docs(release): add the v4.8.0 release-notes media
A GitHub release body needs publicly reachable URLs. Drag-and-dropped
media lives on GitHub's user-attachments CDN, which has no CLI, and
release-asset URLs carry the tag, so they 404 the moment an untagged
draft becomes v4.8.0. Committing the media and pointing
raw.githubusercontent at master is the one path that survives publishing,
and it is already how the notes embed the logo.

Four files, 1.4 MB, flat in website/static/media/ next to the existing
clips. A website/static/media/release/ subdirectory looked tidier but is
swallowed by the bare `release/` rule at .gitignore:52, which matches a
directory of that name at any depth.

- v4-8-0-ui-home.png            Home, dark theme, the recommendation lanes
- v4-8-0-ui-model-variants.png  the rail and detail pane from #11288, with
                                all four pocket-35b variants and the
                                AUTO-SELECTED badge
- v4-8-0-ui-activity.png        four live installs across both lanes, the
                                Pause control from #11222, the collapsed
                                strip and the sidebar count
- 3d-generation.gif             the 3D viewer clip as a GIF, since a
                                raw-URL mp4 does not render inline in a
                                release body. Sibling of the existing
                                3d-generation.mp4, no version prefix
                                because it is reusable.

Screenshots are version-prefixed because UI captures date quickly; #11288,
#11305, #11307 and #11222 all changed these pages inside this cycle.

All captured 2026-08-04 from a real local-ai built from master against the
live gallery with real installs running, not the mock harness.

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
Assisted-by: Claude Code:claude-opus-5 [Read] [Edit] [Bash]
2026-08-04 23:42:56 +00:00
..

localai.io

The Hugo site served at the root of localai.io. The documentation is a separate Hugo site in ../docs and is served under /docs/. CI builds both and uploads them as a single GitHub Pages artifact (see .github/workflows/gh-pages.yml).

Running locally

From the repository root:

make website    # this site only, http://localhost:1313/
make docs       # documentation only, http://localhost:1313/docs/
make site       # build both, merged into website/public, exactly as CI does
make site-serve # the same merged build, served on http://localhost:8000

make website and make docs run hugo serve, so they pick up edits live but only cover one site at a time. Use make site-serve when you need the cross links between the two sites, or the redirects from the pre-split URLs, to work.

make site also runs .github/ci/gen-redirects.sh, which leaves a meta-refresh page at every URL the documentation used to occupy before it moved under /docs/. GitHub Pages has no server-side redirects, so those files are the only thing keeping the old links alive.

Set SITE_BASE_URL to change the base URL the merged build is generated for (default http://localhost:8000).