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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# HAVEN

[![Go version](https://img.shields.io/github/go-mod/go-version/bitvora/haven?logo=go)](./go.mod#L3)
[![GitHub Release](https://img.shields.io/github/v/release/bitvora/haven?link=https%3A%2F%2Fgithub.com%2Fbitvora%2Fhaven%2Freleases%2Flatest)](https://github.com/bitvora/haven/releases/latest)
[![Go version](https://img.shields.io/github/go-mod/go-version/barrydeen/haven?logo=go)](./go.mod#L3)
[![GitHub Release](https://img.shields.io/github/v/release/barrydeen/haven?link=https%3A%2F%2Fgithub.com%2Fbarrydeen%2Fhaven%2Freleases%2Flatest)](https://github.com/barrydeen/haven/releases/latest)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](./LICENSE)
[![CI](https://github.com/bitvora/haven/actions/workflows/lint.yml/badge.svg)](https://github.com/bitvora/haven/actions/workflows/lint.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/bitvora/haven)](https://goreportcard.com/report/github.com/bitvora/haven)
[![CI](https://github.com/barrydeen/haven/actions/workflows/lint.yml/badge.svg)](https://github.com/barrydeen/haven/actions/workflows/lint.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/barrydeen/haven)](https://goreportcard.com/report/github.com/barrydeen/haven)

> [!IMPORTANT]
> HAVEN is considered feature complete and, going forward, Bitvora's repository will only receive bug fixes.
> HAVEN is considered feature complete and, going forward, Barry Deen's repository will only receive bug fixes.
> See the announcement [here](https://jumble.social/notes/nevent1qvzqqqqqqypzpckv7l8jqspl8u4y54dn9rcduwlrs4v2040nxce0m2h0cunvrj8tqy88wumn8ghj7mn0wvhxcmmv9uq3wamnwvaz7tmjv4kxz7fwwpexjmtpdshxuet59uqzqnjwq82z3lq62mkalaxu2dlgnjxw2stcwxan9wl66s7eywwjljvqx0s8cp)

HAVEN (High Availability Vault for Events on Nostr) is the most sovereign personal relay for the Nostr protocol, for
Expand Down Expand Up @@ -60,7 +60,7 @@ for easy recovery. See [Backup Documentation](docs/backup.md) for more details.

The easiest way to get started with Haven is to download pre-built binaries from our GitHub releases page:

**[Download Haven Releases](https://github.com/bitvora/haven/releases/)**
**[Download Haven Releases](https://github.com/barrydeen/haven/releases/)**

#### Installation Steps:

Expand Down
2 changes: 1 addition & 1 deletion backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/bitvora/haven/internal/cloud"
"github.com/barrydeen/haven/internal/cloud"
)

func runBackup(ctx context.Context) {
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type Config struct {
S3Config *S3Config `json:"s3_config"`
}

const relaySoftware = "https://github.com/bitvora/haven"
const relaySoftware = "https://github.com/barrydeen/haven"

func loadConfig() Config {
_ = godotenv.Load(".env")
Expand Down
2 changes: 1 addition & 1 deletion docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sudo apt install build-essential`
### 1. Clone the repository

```bash
git clone https://github.com/bitvora/haven.git
git clone https://github.com/barrydeen/haven.git
cd haven
```

Expand Down
4 changes: 2 additions & 2 deletions docs/verify.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This document provides instructions on how to verify the authenticity of Haven b
The release binaries, along with `checksums.txt` and `checksums.txt.sig` files, can be downloaded from the official
GitHub releases page:

[https://github.com/bitvora/haven/releases](https://github.com/bitvora/haven/releases)
[https://github.com/barrydeen/haven/releases](https://github.com/barrydeen/haven/releases)

Download the appropriate binary for your system along with the checksum files.

Expand All @@ -24,7 +24,7 @@ Before verifying the binaries, you need to obtain the Haven PGP keys. You can do
2. Directly from the Haven repository:

```bash
curl https://raw.githubusercontent.com/bitvora/haven/master/haven.asc -sSL | gpg --import -
curl https://raw.githubusercontent.com/barrydeen/haven/master/haven.asc -sSL | gpg --import -
```

## Verifying the Checksums File
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/bitvora/haven
module github.com/barrydeen/haven

go 1.24.1

Expand Down
2 changes: 1 addition & 1 deletion import.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/fiatjaf/eventstore"
"github.com/nbd-wtf/go-nostr"

"github.com/bitvora/haven/pkg/wot"
"github.com/barrydeen/haven/pkg/wot"
)

const layout = "2006-01-02"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/nbd-wtf/go-nostr"
"github.com/spf13/afero"

"github.com/bitvora/haven/pkg/wot"
"github.com/barrydeen/haven/pkg/wot"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion policies.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"log/slog"

"github.com/bitvora/haven/pkg/wot"
"github.com/barrydeen/haven/pkg/wot"
"github.com/fiatjaf/khatru"
"github.com/nbd-wtf/go-nostr"
)
Expand Down
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h1 class="text-5xl md:text-6xl font-bold text-purple-400 mb-6">
>
|
<a
href="https://github.com/bitvora/haven"
href="https://github.com/barrydeen/haven"
target="_blank"
class="text-purple-300 hover:text-purple-400 underline"
>Haven Relay on Github</a
Expand Down