diff --git a/.cursor/environment.json b/.cursor/environment.json index 22cc4b09..8d04f146 100644 --- a/.cursor/environment.json +++ b/.cursor/environment.json @@ -1,5 +1,5 @@ { - "name": "Loreframe Lab (CPU dev)", + "name": "HocusPocus (CPU dev)", "install": "bash .cursor/install.sh", "terminals": [ { diff --git a/.cursor/install.sh b/.cursor/install.sh index 22b6d79d..99ec6a24 100755 --- a/.cursor/install.sh +++ b/.cursor/install.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Idempotent Cloud Agent / headless dev bootstrap for Loreframe Lab. +# Idempotent Cloud Agent / headless dev bootstrap for HocusPocus. # # Sets up the CPU-only Python virtualenv used to run the repository's checks # (clean-repo guard, compileall, unittest suite) and installs the React UI @@ -12,7 +12,7 @@ set -euo pipefail REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" cd "$REPO_ROOT" -echo "==> Loreframe Lab dev bootstrap (repo: $REPO_ROOT)" +echo "==> HocusPocus dev bootstrap (repo: $REPO_ROOT)" # --- Ensure the venv module is available (default Ubuntu image ships python3 # without ensurepip). Guarded so re-runs are a no-op. --- diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 6ad2e056..f3c45aaa 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: Questions & discussion - url: https://github.com/IAnMove/loreframe-studio/discussions + url: https://github.com/IAnMove/hocuspocus/discussions about: Usage questions, setup help, and general discussion — please use Discussions, not issues. diff --git a/README.md b/README.md index 2cb0810f..7f089016 100644 --- a/README.md +++ b/README.md @@ -413,7 +413,7 @@ The first video is always the slow one: install is ~10–20 min, then the first ## Install 1. Install [Pinokio](https://pinokio.computer). -2. In Pinokio, open the **Discover** tab and paste `https://github.com/IAnMove/loreframe-studio` — or click the **Download** button on the [HocusPocus Studio repo page](https://github.com/IAnMove/loreframe-studio). +2. In Pinokio, open the **Discover** tab and paste `https://github.com/IAnMove/hocuspocus` — or click the **Download** button on the [HocusPocus Studio repo page](https://github.com/IAnMove/hocuspocus). 3. Click **Install**. The launcher will: - Create a Python virtual environment in `app/env/` - Install all Python dependencies (torch, xformers, transformers, fastapi, …) @@ -483,4 +483,4 @@ Third-party models, weights, and components keep their own licenses — review t ## Issues -Bug reports and feature requests: [github.com/IAnMove/loreframe-studio/issues](https://github.com/IAnMove/loreframe-studio/issues). +Bug reports and feature requests: [github.com/IAnMove/hocuspocus/issues](https://github.com/IAnMove/hocuspocus/issues). diff --git a/scripts/check_documentation_links.py b/scripts/check_documentation_links.py index 8c18f94e..7479c14f 100644 --- a/scripts/check_documentation_links.py +++ b/scripts/check_documentation_links.py @@ -48,9 +48,9 @@ def main() -> int: issue_config = (ROOT / ".github" / "ISSUE_TEMPLATE" / "config.yml").read_text( encoding="utf-8" ) - expected_discussions = "https://github.com/IAnMove/loreframe-studio/discussions" + expected_discussions = "https://github.com/IAnMove/hocuspocus/discussions" if expected_discussions not in issue_config: - errors.append("issue template: Loreframe Lab Discussions URL is missing") + errors.append("issue template: HocusPocus Discussions URL is missing") if "https://github.com/Blizaine/Maestro/discussions" in issue_config: errors.append("issue template: stale upstream Discussions URL remains")