1bb03e0002
Points the repository's remaining references at its current GitHub home and refreshes the project's copyright and author metadata. **Repository references** — production GitHub, container registry, and release-API URLs now point at the current repository: README (releases link and image), `docker-compose.prod.yaml`, the install scripts, the release URL, the update-check endpoint in `internal/update/update.go`, the HTML export footer, the wheel `Home-page`, and the desktop-release docs. The nilaway `include-pkgs` value is a Go import path, so it follows the module path rather than the web URL form; it previously matched no packages and left nilaway analyzing nothing. **Copyright and author** — the LICENSE copyright year moves to 2026 and its holder is updated. The same name is applied to the desktop bundle copyright, `Cargo.toml` authors, the wheel `Author` metadata (and its test assertion), and the About modal. **Left intact** — the `desktop/src-tauri/tauri.conf.json` updater placeholder and the matching `desktop-release.yml` `sed` patterns that rewrite it at build time, plus the `/Users/wesm` test fixtures and the `github.com/wesm/middleman` fixture, which are home-directory paths rather than repository references. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
783 B
YAML
24 lines
783 B
YAML
services:
|
|
agentsview:
|
|
image: ghcr.io/kenn-io/agentsview:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:8080:8080"
|
|
environment:
|
|
CLAUDE_PROJECTS_DIR: /agents/claude
|
|
CODEX_SESSIONS_DIR: /agents/codex
|
|
FORGE_DIR: /agents/forge
|
|
OPENCODE_DIR: /agents/opencode
|
|
# Set both of these to serve from PostgreSQL instead of the local archive.
|
|
# PG_SERVE: "1"
|
|
# AGENTSVIEW_PG_URL: postgres://user:password@postgres.example.com:5432/agentsview?sslmode=require
|
|
volumes:
|
|
- agentsview-data:/data
|
|
- ${HOME}/.claude/projects:/agents/claude:ro
|
|
- ${HOME}/.codex/sessions:/agents/codex:ro
|
|
- ${HOME}/.forge:/agents/forge:ro
|
|
- ${HOME}/.local/share/opencode:/agents/opencode:ro
|
|
|
|
volumes:
|
|
agentsview-data:
|