Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cursor/environment.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Loreframe Lab (CPU dev)",
"name": "HocusPocus (CPU dev)",
"install": "bash .cursor/install.sh",
"terminals": [
{
Expand Down
4 changes: 2 additions & 2 deletions .cursor/install.sh
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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. ---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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, …)
Expand Down Expand Up @@ -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).
4 changes: 2 additions & 2 deletions scripts/check_documentation_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
Loading