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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ Studio by diskrot is an offline generative music creation web app. It runs entir

**Windows** — open PowerShell as Administrator and paste:
```powershell
irm https://raw.githubusercontent.com/diskrot/studio/main/installer/install.ps1 -OutFile $env:TEMP\diskrot-install.ps1; powershell -ExecutionPolicy Bypass -File $env:TEMP\diskrot-install.ps1
irm https://raw.githubusercontent.com/diskrotrepo/studio/stable/installer/install.ps1 -OutFile $env:TEMP\diskrot-install.ps1; powershell -ExecutionPolicy Bypass -File $env:TEMP\diskrot-install.ps1
```

**macOS** — open Terminal and paste:
```bash
curl -fsSL https://raw.githubusercontent.com/diskrot/studio/main/installer/install.sh -o /tmp/diskrot-install.sh && bash /tmp/diskrot-install.sh
curl -fsSL https://raw.githubusercontent.com/diskrotrepo/studio/stable/installer/install.sh -o /tmp/diskrot-install.sh && bash /tmp/diskrot-install.sh
```

The installer handles everything — WSL, Docker, NVIDIA drivers, GPU detection, and launching the stack. First startup downloads model weights and may take several minutes.
Expand Down
4 changes: 2 additions & 2 deletions installer/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Also provides update functionality via -Update flag.

One-liner install (run in an elevated PowerShell):
irm https://raw.githubusercontent.com/diskrot/studio/stable/installer/install.ps1 -OutFile $env:TEMP\diskrot-install.ps1; powershell -ExecutionPolicy Bypass -File $env:TEMP\diskrot-install.ps1
irm https://raw.githubusercontent.com/diskrotrepo/studio/stable/installer/install.ps1 -OutFile $env:TEMP\diskrot-install.ps1; powershell -ExecutionPolicy Bypass -File $env:TEMP\diskrot-install.ps1
.PARAMETER Update
Pull latest Docker images and restart the stack.
.PARAMETER Uninstall
Expand Down Expand Up @@ -43,7 +43,7 @@ $DOCKER_DESKTOP_URL = "https://desktop.docker.com/win/main/amd64/Docker%20Deskt
$NVIDIA_DRIVER_URL = "https://www.nvidia.com/Download/index.aspx"
$MIN_NVIDIA_DRIVER = 526
$MIN_DOCKER_VERSION = "4.18"
$STUDIO_REPO = "https://github.com/diskrot/studio.git"
$STUDIO_REPO = "https://github.com/diskrotrepo/studio.git"
$STUDIO_COMPOSE_FILE = if ($env:COMPOSE_FILE) { $env:COMPOSE_FILE } else { "docker-compose.yml" }

# --- Helpers ------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions installer/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
# ./installer/install.sh --uninstall # stop and optionally remove data
#
# One-liner install (paste into Terminal):
# curl -fsSL https://raw.githubusercontent.com/diskrot/studio/stable/installer/install.sh -o /tmp/diskrot-install.sh && bash /tmp/diskrot-install.sh
# curl -fsSL https://raw.githubusercontent.com/diskrotrepo/studio/stable/installer/install.sh -o /tmp/diskrot-install.sh && bash /tmp/diskrot-install.sh
# ==============================================================================

set -euo pipefail

# --- Constants ----------------------------------------------------------------
STUDIO_REPO="https://github.com/diskrot/studio.git"
STUDIO_REPO="https://github.com/diskrotrepo/studio.git"
DOCKER_DMG_URL_ARM="https://desktop.docker.com/mac/main/arm64/Docker.dmg"
DOCKER_DMG_URL_X86="https://desktop.docker.com/mac/main/amd64/Docker.dmg"
STUDIO_COMPOSE_FILE="${COMPOSE_FILE:-docker-compose.yml}"
Expand Down