chore: replace stonith404 with pocket-id after org migration

This commit is contained in:
Elias Schneider
2025-02-05 18:08:01 +01:00
parent 7350e3486d
commit c6ab2b252c
58 changed files with 192 additions and 160 deletions

View File

@@ -10,7 +10,7 @@ The goal of Pocket ID is to be a simple and easy-to-use. There are other self-ho
Additionally, what makes Pocket ID special is that it only supports [passkey](https://www.passkeys.io/) authentication, which means you dont need a password. Some people might not like this idea at first, but I believe passkeys are the future, and once you try them, youll love them. For example, you can now use a physical Yubikey to sign in to all your self-hosted services easily and securely.
**_Pocket ID is in its early stages and may contain bugs. There might be OIDC features that are not yet implemented. If you encounter any issues, please open an issue_** [here](https://github.com/stonith404/pocket-id/issues/new?template=bug.yml).
**_Pocket ID is in its early stages and may contain bugs. There might be OIDC features that are not yet implemented. If you encounter any issues, please open an issue_** [here](https://github.com/pocket-id/pocket-id/issues/new?template=bug.yml).
## Get to know Pocket ID

View File

@@ -13,9 +13,9 @@ Pocket ID requires a [secure context](https://developer.mozilla.org/en-US/docs/W
1. Download the `docker-compose.yml` and `.env` file:
```bash
curl -O https://raw.githubusercontent.com/stonith404/pocket-id/main/docker-compose.yml
curl -O https://raw.githubusercontent.com/pocket-id/pocket-id/main/docker-compose.yml
curl -o .env https://raw.githubusercontent.com/stonith404/pocket-id/main/.env.example
curl -o .env https://raw.githubusercontent.com/pocket-id/pocket-id/main/.env.example
```
2. Edit the `.env` file so that it fits your needs. See the [environment variables](/configuration/environment-variables) section for more information.
@@ -59,7 +59,7 @@ Required tools:
2. Run the following commands:
```bash
git clone https://github.com/stonith404/pocket-id
git clone https://github.com/pocket-id/pocket-id
cd pocket-id
# Checkout the latest version

View File

@@ -10,7 +10,7 @@ const config: Config = {
url: "https://docs.pocket-id.org",
baseUrl: "/",
organizationName: "stonith404",
organizationName: "pocket-id",
projectName: "pocket-id",
onBrokenLinks: "warn",
@@ -28,7 +28,7 @@ const config: Config = {
docs: {
routeBasePath: "/",
sidebarPath: "./sidebars.ts",
editUrl: "https://github.com/stonith404/pocket-id/edit/main/docs",
editUrl: "https://github.com/pocket-id/pocket-id/edit/main/docs",
},
blog: false,
} satisfies Preset.Options,
@@ -54,7 +54,7 @@ const config: Config = {
position: "right",
},
{
href: "https://github.com/stonith404/pocket-id",
href: "https://github.com/pocket-id/pocket-id",
label: "GitHub",
position: "right",
},

View File

@@ -102,7 +102,7 @@ const sidebars: SidebarsConfig = {
{
type: "link",
label: "Contributing",
href: "https://github.com/stonith404/pocket-id/blob/main/CONTRIBUTING.md",
href: "https://github.com/pocket-id/pocket-id/blob/main/CONTRIBUTING.md",
},
{
type: "link",

View File

@@ -3,7 +3,7 @@ import ExecutionEnvironment from "@docusaurus/ExecutionEnvironment";
if (ExecutionEnvironment.canUseDOM) {
function readVersionFile() {
return fetch(
"https://raw.githubusercontent.com/stonith404/pocket-id/refs/heads/main/.version"
"https://raw.githubusercontent.com/pocket-id/pocket-id/refs/heads/main/.version"
)
.then((response) => response.text())
.catch((error) => `Error reading version file: ${error}`);