From 1506ff0f6976c74c30c0c7e8abc4d194a70f27a5 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sun, 19 May 2024 18:58:45 +0000 Subject: [PATCH] docs: Change references from the old repo URL to the new one --- README.md | 12 ++++++------ apps/cli/package.json | 2 +- apps/landing/app/page.tsx | 2 +- apps/web/app/dashboard/admin/page.tsx | 5 ++--- docs/docs/01-intro.md | 2 +- docs/docs/02-Installation/01-docker.md | 6 +++--- docs/docs/02-Installation/02-unraid.md | 2 +- docs/docs/03-configuration.md | 2 +- docs/docusaurus.config.ts | 8 ++++---- 9 files changed, 20 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index b4032814..8036c709 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@
- - GitHub Actions Workflow Status + + GitHub Actions Workflow Status - - GitHub Release + + GitHub Release Discord @@ -14,7 +14,7 @@ A self-hostable bookmark-everything app with a touch of AI for the data hoarders out there. -![homepage screenshot](https://github.com/MohamedBassem/hoarder-app/blob/main/screenshots/homepage.png?raw=true) +![homepage screenshot](https://github.com/hoarder-app/hoarder/blob/main/screenshots/homepage.png?raw=true) ## Features @@ -82,4 +82,4 @@ I'm a systems engineer in my day job (and have been for the past 7 years). I did ## Star History -[![Star History Chart](https://api.star-history.com/svg?repos=MohamedBassem/hoarder-app&type=Date)](https://star-history.com/#MohamedBassem/hoarder-app&Date) +[![Star History Chart](https://api.star-history.com/svg?repos=hoarder-app/hoarder&type=Date)](https://star-history.com/#hoarder-app/hoarder&Date) diff --git a/apps/cli/package.json b/apps/cli/package.json index bee5ef37..01b5ab17 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -38,7 +38,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/MohamedBassem/hoarder-app.git", + "url": "git+https://github.com/hoarder-app/hoarder.git", "directory": "apps/cli" }, "eslintConfig": { diff --git a/apps/landing/app/page.tsx b/apps/landing/app/page.tsx index a7b25079..cfe04ce0 100644 --- a/apps/landing/app/page.tsx +++ b/apps/landing/app/page.tsx @@ -8,7 +8,7 @@ import playStoreBadge from "@/public/google-play-badge.png"; import screenshot from "@/public/screenshot.png"; import { ExternalLink, Github } from "lucide-react"; -const GITHUB_LINK = "https://github.com/MohamedBassem/hoarder-app"; +const GITHUB_LINK = "https://github.com/hoarder-app/hoarder"; const DOCS_LINK = "https://docs.hoarder.app"; const DEMO_LINK = "https://try.hoarder.app"; diff --git a/apps/web/app/dashboard/admin/page.tsx b/apps/web/app/dashboard/admin/page.tsx index 43c48b44..155b2e17 100644 --- a/apps/web/app/dashboard/admin/page.tsx +++ b/apps/web/app/dashboard/admin/page.tsx @@ -20,9 +20,8 @@ import { Trash } from "lucide-react"; import { useSession } from "next-auth/react"; const REPO_LATEST_RELEASE_API = - "https://api.github.com/repos/mohamedbassem/hoarder-app/releases/latest"; -const REPO_RELEASE_PAGE = - "https://github.com/MohamedBassem/hoarder-app/releases"; + "https://api.github.com/repos/hoarder-app/hoarder/releases/latest"; +const REPO_RELEASE_PAGE = "https://github.com/hoarder-app/hoarder/releases"; function useLatestRelease() { const { data } = useQuery({ diff --git a/docs/docs/01-intro.md b/docs/docs/01-intro.md index ae9d414c..a51093ad 100644 --- a/docs/docs/01-intro.md +++ b/docs/docs/01-intro.md @@ -6,7 +6,7 @@ slug: / Hoarder is an open source "Bookmark Everything" app that uses AI for automatically tagging the content you throw at it. The app is built with self-hosting as a first class citizen. -![Screenshot](https://raw.githubusercontent.com/MohamedBassem/hoarder-app/main/screenshots/homepage.png) +![Screenshot](https://raw.githubusercontent.com/hoarder-app/hoarder/main/screenshots/homepage.png) ## Features diff --git a/docs/docs/02-Installation/01-docker.md b/docs/docs/02-Installation/01-docker.md index 0fa47ad4..89fa6538 100644 --- a/docs/docs/02-Installation/01-docker.md +++ b/docs/docs/02-Installation/01-docker.md @@ -11,10 +11,10 @@ Create a new directory to host the compose file and env variables. ### 2. Download the compose file -Download the docker compose file provided [here](https://github.com/MohamedBassem/hoarder-app/blob/main/docker/docker-compose.yml). +Download the docker compose file provided [here](https://github.com/hoarder-app/hoarder/blob/main/docker/docker-compose.yml). ``` -wget https://raw.githubusercontent.com/MohamedBassem/hoarder-app/main/docker/docker-compose.yml +wget https://raw.githubusercontent.com/hoarder-app/hoarder/main/docker/docker-compose.yml ``` ### 3. Populate the environment variables @@ -30,7 +30,7 @@ NEXTAUTH_URL=http://localhost:3000 You **should** change the random strings. You can use `openssl rand -base64 36` to generate the random strings. You should also change the `NEXTAUTH_URL` variable to point to your server address. -Using `HOARDER_VERSION=release` will pull the latest stable version. You might want to pin the version instead to control the upgrades (e.g. `HOARDER_VERSION=0.10.0`). Check the latest versions [here](https://github.com/MohamedBassem/hoarder-app/pkgs/container/hoarder-web). +Using `HOARDER_VERSION=release` will pull the latest stable version. You might want to pin the version instead to control the upgrades (e.g. `HOARDER_VERSION=0.10.0`). Check the latest versions [here](https://github.com/hoarder-app/hoarder/pkgs/container/hoarder-web). Persistent storage and the wiring between the different services is already taken care of in the docker compose file. diff --git a/docs/docs/02-Installation/02-unraid.md b/docs/docs/02-Installation/02-unraid.md index 1502e125..b879f900 100644 --- a/docs/docs/02-Installation/02-unraid.md +++ b/docs/docs/02-Installation/02-unraid.md @@ -2,7 +2,7 @@ ## Docker Compose Manager Plugin (Recommended) -You can use [Docker Compose Manager](https://forums.unraid.net/topic/114415-plugin-docker-compose-manager/) plugin to deploy Hoarder using the official docker compose file provided [here](https://github.com/MohamedBassem/hoarder-app/blob/main/docker/docker-compose.yml). After creating the stack, you'll need to setup some env variables similar to that from the docker compose installation docs [here](/Installation/docker#3-populate-the-environment-variables). +You can use [Docker Compose Manager](https://forums.unraid.net/topic/114415-plugin-docker-compose-manager/) plugin to deploy Hoarder using the official docker compose file provided [here](https://github.com/hoarder-app/hoarder/blob/main/docker/docker-compose.yml). After creating the stack, you'll need to setup some env variables similar to that from the docker compose installation docs [here](/Installation/docker#3-populate-the-environment-variables). ## Community Apps diff --git a/docs/docs/03-configuration.md b/docs/docs/03-configuration.md index f777731f..fc9e70db 100644 --- a/docs/docs/03-configuration.md +++ b/docs/docs/03-configuration.md @@ -1,6 +1,6 @@ # Configuration -The app is mainly configured by environment variables. All the used environment variables are listed in [packages/shared/config.ts](https://github.com/MohamedBassem/hoarder-app/blob/main/packages/shared/config.ts). The most important ones are: +The app is mainly configured by environment variables. All the used environment variables are listed in [packages/shared/config.ts](https://github.com/hoarder-app/hoarder/blob/main/packages/shared/config.ts). The most important ones are: | Name | Required | Default | Description | | ------------------------- | ------------------------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index b4562440..7780ba0a 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -36,7 +36,7 @@ const config: Config = { docs: { sidebarPath: './sidebars.ts', editUrl: - 'https://github.com/MohamedBassem/hoarder-app/tree/main/docs/', + 'https://github.com/hoarder-app/hoarder/tree/main/docs/', routeBasePath: "/", }, blog: false, @@ -64,7 +64,7 @@ const config: Config = { position: 'right', }, { - href: 'https://github.com/MohamedBassem/hoarder-app', + href: 'https://github.com/hoarder-app/hoarder', label: 'GitHub', position: 'right', }, @@ -87,7 +87,7 @@ const config: Config = { items: [ { label: 'GitHub', - href: 'https://github.com/MohamedBassem/hoarder-app', + href: 'https://github.com/hoarder-app/hoarder', }, ], }, @@ -100,7 +100,7 @@ const config: Config = { }, { label: 'GitHub', - href: 'https://github.com/MohamedBassem/hoarder-app', + href: 'https://github.com/hoarder-app/hoarder', }, { label: 'Demo',