From 5557dc9ab29fe9180d45e6a36c7a4c992be7c222 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Fri, 27 Jun 2025 18:07:35 -0600 Subject: [PATCH] move urls to new domain, username --- README.md | 10 +++++----- docker/docker-compose.example.yaml | 2 +- man/refractr.1 | 2 +- src/example/config.toml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a932754..6a725e5 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ With the above procedure, refractr can be used to mirror public repositories to To install refractr using Cargo, run: ```sh -cargo install --git https://git.brysonsteck.xyz/brysonsteck/refractr +cargo install --git https://forge.steck.dev/bryson/refractr ``` ### Docker @@ -25,19 +25,19 @@ cargo install --git https://git.brysonsteck.xyz/brysonsteck/refractr To run refractr using Docker, run: ```sh -docker run -it git.brysonsteck.xyz/brysonsteck/refractr refractr +docker run -it forge.steck.dev/bryson/refractr refractr ``` You can build custom images with your configs using a [Dockerfile](Dockerfile), or you can build the image entirely from source using the [package Dockerfile](package.Dockerfile) that is used to create the base images: ```sh -git clone https://git.brysonsteck.xyz/brysonsteck/refractr && cd refractr +git clone https://forge.steck.dev/bryson/refractr && cd refractr docker build -t refractr --build-arg UID=$(id -u) --build-arg GID=$(id -g) -f package.Dockerfile . ``` ### Windows -You can download pre-built binaries from the [Releases page](https://git.brysonsteck.xyz/brysonsteck/refractr/releases) or from my package mirror: +You can download pre-built binaries from the [Releases page](https://forge.steck.dev/bryson/refractr/releases) or from my package mirror: ```powershell # Download the exe with PowerShell @@ -58,7 +58,7 @@ To build and run refractr from source, you may need some packages installed on y ```sh # clone the repository -git clone https://git.brysonsteck.xyz/brysonsteck/refractr && cd refractr +git clone https://forge.steck.dev/bryson/refractr && cd refractr # build the release binary cargo build --release # build the debug binary (not recommended for normal use) diff --git a/docker/docker-compose.example.yaml b/docker/docker-compose.example.yaml index 90a42c4..20daf2d 100644 --- a/docker/docker-compose.example.yaml +++ b/docker/docker-compose.example.yaml @@ -1,6 +1,6 @@ services: refractr: - image: git.brysonsteck.xyz/brysonsteck/refractr:latest + image: forge.steck.dev/bryson/refractr:latest environment: # change these to your uid/gid # if omitted, the container will guess diff --git a/man/refractr.1 b/man/refractr.1 index 6f41719..2ea772e 100644 --- a/man/refractr.1 +++ b/man/refractr.1 @@ -88,7 +88,7 @@ refractr is free and open source! Please report any bugs in, provide feedback fo .IR https://codeberg.org/brysonsteck/refractr The Codeberg repository is proof of refractr at work. An upstream, read-only version of the repository is also available at: -.IR https://git.brysonsteck.xyz/brysonsteck/refractr +.IR https://forge.steck.dev/bryson/refractr .P .SH LICENSE Copyright 2025 Bryson Steck diff --git a/src/example/config.toml b/src/example/config.toml index 9c83a6a..378118c 100644 --- a/src/example/config.toml +++ b/src/example/config.toml @@ -4,7 +4,7 @@ # The "from" field is a string of the original/main repository you want to pull # This field is REQUIRED and MUST start with "https://" or "ssh://" -#from = "https://git.brysonsteck.xyz/brysonsteck/refractr" +#from = "https://forge.steck.dev/bryson/refractr" # The "to" field is a list of strings of the remotes you want to push the repo from the "from" field to # These repositories must exist on the remote server