diff --git a/README.md b/README.md index 580e825..3115260 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You need [Docker](https://docs.docker.com/get-docker/) with the Compose plugin. **1. Get the files and run the installer:** ```sh -git clone https://forge.b1fr0st.eu/peter/siftlode.git +git clone https://git.b1fr0st.eu/peter/siftlode.git cd siftlode ./install.sh # Windows (PowerShell): ./install.ps1 ``` @@ -66,7 +66,7 @@ for the full walkthrough. Prefer to build the image yourself instead of pulling it: ```sh -git clone https://forge.b1fr0st.eu/peter/siftlode.git +git clone https://git.b1fr0st.eu/peter/siftlode.git cd siftlode cp .env.example .env # generate the two secrets and paste them into .env: diff --git a/VERSION b/VERSION index e8f304f..a9299f6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.58.0 \ No newline at end of file +0.58.1 \ No newline at end of file diff --git a/docker-compose.selfhost.yml b/docker-compose.selfhost.yml index c159f68..6192ff6 100644 --- a/docker-compose.selfhost.yml +++ b/docker-compose.selfhost.yml @@ -30,7 +30,7 @@ services: restart: unless-stopped api: - image: forge.b1fr0st.eu/peter/siftlode:${IMAGE_TAG:-latest} + image: git.b1fr0st.eu/peter/siftlode:${IMAGE_TAG:-latest} env_file: - .env environment: @@ -72,7 +72,7 @@ services: # DB (job queue) and the downloads mount with the API. Not read-only (yt-dlp/deno/ffmpeg write to # $HOME caches + the staging dir). worker: - image: forge.b1fr0st.eu/peter/siftlode:${IMAGE_TAG:-latest} + image: git.b1fr0st.eu/peter/siftlode:${IMAGE_TAG:-latest} command: ["python", "-m", "app.worker"] env_file: - .env diff --git a/docs/self-hosting.md b/docs/self-hosting.md index 8997a3a..05a9ab3 100644 --- a/docs/self-hosting.md +++ b/docs/self-hosting.md @@ -20,7 +20,7 @@ Download these into a new, empty folder: - `docker-compose.selfhost.yml` - `install.sh` (Linux/macOS) **or** `install.ps1` (Windows) -The app image is published at `forge.b1fr0st.eu/peter/siftlode` (public — no login to pull). +The app image is published at `git.b1fr0st.eu/peter/siftlode` (public — no login to pull). ## 2. Run the installer diff --git a/frontend/src/components/Welcome.tsx b/frontend/src/components/Welcome.tsx index 48d6462..c3af9db 100644 --- a/frontend/src/components/Welcome.tsx +++ b/frontend/src/components/Welcome.tsx @@ -17,7 +17,7 @@ import { } from "lucide-react"; // Siftlode is open source; the landing footer links to the public repository. -const REPO_URL = "https://forge.b1fr0st.eu/peter/siftlode"; +const REPO_URL = "https://git.b1fr0st.eu/peter/siftlode"; import { api } from "../lib/api"; import { HttpError } from "../lib/api"; import { setLanguage, type LangCode } from "../i18n";