move urls to new domain, username

This commit is contained in:
Bryson Steck 2025-06-27 18:07:35 -06:00
parent 08a6bb2b5d
commit 5557dc9ab2
Signed by: bryson
SSH key fingerprint: SHA256:XpKABw/nP4z8UVaH+weLaBnEOD86+cVwif+QjuYLGT4
4 changed files with 8 additions and 8 deletions

View file

@ -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)

View file

@ -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

View file

@ -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

View file

@ -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