Update GitHub repository links in documentation

This commit is contained in:
Zai Shi 2025-02-20 10:14:55 -08:00
parent 5e2000ec9a
commit 4df77497a0
12 changed files with 16 additions and 16 deletions

View File

@ -1,5 +1,5 @@
<!--
Make sure you've read the CONTRIBUTING.md guidelines: https://github.com/stack-auth/stack/blob/dev/CONTRIBUTING.md
Make sure you've read the CONTRIBUTING.md guidelines: https://github.com/stack-auth/stack-auth/blob/dev/CONTRIBUTING.md
-->

View File

@ -92,14 +92,14 @@ Check out the [documentation](https://docs.stack-auth.com/getting-started/setup)
Have your own? Happy to feature it if you create a PR or message us on [Discord](https://discord.stack-auth.com).
### Templates
- [Stack Template by Stack Team](https://github.com/stack-auth/stack-template)
- [Stack Template by Stack Team](https://github.com/stack-auth/stack-auth-template)
- [Next SaaSkit by wolfgunblood](https://github.com/wolfgunblood/nextjs-saaskit)
- [SaaS Boilerplate by Robin Faraj](https://github.com/robinfaraj/saas-boilerplate)
### Examples
- [Stack Example by career-tokens](https://github.com/career-tokens/StackYCAuth)
- [Stack Demo by the Stack team](https://github.com/stack-auth/stack/tree/dev/examples/demo)
- [Stack E-Commerce Example by the Stack team](https://github.com/stack-auth/stack/tree/dev/examples/e-commerce)
- [Stack Demo by the Stack team](https://github.com/stack-auth/stack-auth/tree/dev/examples/demo)
- [Stack E-Commerce Example by the Stack team](https://github.com/stack-auth/stack-auth/tree/dev/examples/e-commerce)
## 🏗 Development & Contribution
@ -206,6 +206,6 @@ Thanks to [CodeViz](https://www.codeviz.ai) for generating the diagram!
## ❤ Contributors
<a href="https://github.com/stack-auth/stack/graphs/contributors">
<a href="https://github.com/stack-auth/stack-auth/graphs/contributors">
<img src="https://contrib.rocks/image?repo=stack-auth/stack&columns=9" width="100%" />
</a>

View File

@ -1,5 +1,5 @@
import { Link } from "@/components/link";
import { Typography, Separator } from "@stackframe/stack-ui";
import { Separator, Typography } from "@stackframe/stack-ui";
import { FaDiscord, FaGithub, FaLinkedin } from "react-icons/fa";
export default function Footer () {
@ -13,7 +13,7 @@ export default function Footer () {
{[
{ href: "https://discord.stack-auth.com/", icon: FaDiscord },
{ href: "https://www.linkedin.com/company/stackframe-inc", icon: FaLinkedin },
{ href: "https://github.com/stack-auth/stack", icon: FaGithub },
{ href: "https://github.com/stack-auth/stack-auth", icon: FaGithub },
].map(({ href, icon: Icon }) => (
<li key={href}>
<Link href={href}>

View File

@ -274,7 +274,7 @@ navbar-links:
url: https://discord.stack-auth.com
- type: secondary
text: GitHub
url: https://github.com/stack-auth/stack
url: https://github.com/stack-auth/stack-auth
- type: primary
text: Dashboard
url: https://app.stack-auth.com

View File

@ -13,7 +13,7 @@ For detailed usage instructions, please refer to the manual section of the [setu
- `children`: `React.ReactNode` - The child components to be wrapped by the StackProvider.
- `app`: `StackClientApp | StackServerApp` - The Stack app instance to be used.
- `lang` (optional): `"en-US" | "de-DE" | "es-419" | "es-ES" | "fr-CA" | "fr-FR" | "it-IT" | "pt-BR" | "pt-PT"` - The language to be used for translations.
- `translationOverrides` (optional): `Record<string, string>` - A mapping of English translations to translated equivalents. These will take priority over the translations from the language specified in the `lang` property. Note that the keys are case-sensitive. You can find a full list of supported strings [on GitHub](https://github.com/stack-auth/stack/blob/dev/packages/stack/src/generated/quetzal-translations.ts).
- `translationOverrides` (optional): `Record<string, string>` - A mapping of English translations to translated equivalents. These will take priority over the translations from the language specified in the `lang` property. Note that the keys are case-sensitive. You can find a full list of supported strings [on GitHub](https://github.com/stack-auth/stack-auth/blob/dev/packages/stack/src/generated/quetzal-translations.ts).
## Example

View File

@ -35,6 +35,6 @@ subtitle: Frequently asked questions about Stack
## Other
<AccordionGroup>
<Accordion title="How can I contribute?">
Please carefully read our [CONTRIBUTING.md](https://github.com/stack-auth/stack/blob/dev/CONTRIBUTING.md).
Please carefully read our [CONTRIBUTING.md](https://github.com/stack-auth/stack-auth/blob/dev/CONTRIBUTING.md).
</Accordion>
</AccordionGroup>

View File

@ -83,7 +83,7 @@ Check out the [SDK reference](../sdk/overview.mdx) for more details and examples
## HTML + JS + Vite Example
Here is how to use Stack Auth with Vite, other frameworks work with the same principle. The full example code is available [here](https://github.com/stack-auth/stack/tree/main/examples/js-example).
Here is how to use Stack Auth with Vite, other frameworks work with the same principle. The full example code is available [here](https://github.com/stack-auth/stack-auth/tree/main/examples/js-example).
### Initialize the app

View File

@ -35,7 +35,7 @@ Stack Auth provides a pre-configured Docker image that bundles the dashboard and
docker run -d --name db -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=password -e POSTGRES_DB=stackframe -p 5432:5432 postgres:latest
```
2. Get the [example environment file](https://github.com/stack-auth/stack/tree/main/docker/server/.env.example) and modify it to your needs. See the [full template here](https://github.com/stack-auth/stack/blob/dev/docker/server/.env).
2. Get the [example environment file](https://github.com/stack-auth/stack-auth/tree/main/docker/server/.env.example) and modify it to your needs. See the [full template here](https://github.com/stack-auth/stack-auth/blob/dev/docker/server/.env).
3. Run the Docker container:
```sh

View File

@ -161,4 +161,4 @@ Now you should be able to compare the data you can view with an anonymous user,
</Steps>
You can find the full example [here on GitHub](https://github.com/stack-auth/stack/tree/main/examples/supabase).
You can find the full example [here on GitHub](https://github.com/stack-auth/stack-auth/tree/main/examples/supabase).

View File

@ -98,7 +98,7 @@ To manage everything efficiently, there is a powerful admin dashboard:
![Stack dashboard](./imgs/dashboard.png)
Best of all, Stack is **100% open-source**. This means the client, server, dashboard, and even this documentation you're reading right now. Check out our [GitHub](https://github.com/stack-auth/stack) to open an issue or pull request.
Best of all, Stack is **100% open-source**. This means the client, server, dashboard, and even this documentation you're reading right now. Check out our [GitHub](https://github.com/stack-auth/stack-auth) to open an issue or pull request.
This is just a glimpse of what Stack can do. Stack also handles many other tasks like backend integration, data storage, emails, teams, permissions, and more, which you will learn about later in the documentation.

View File

@ -373,7 +373,7 @@ export class StackClientInterface {
if (res.status === 508 && error.includes("INFINITE_LOOP_DETECTED")) {
// Some Vercel deployments seem to have an odd infinite loop bug. In that case, retry.
// See: https://github.com/stack-auth/stack/issues/319
// See: https://github.com/stack-auth/stack-auth/issues/319
return Result.error(errorObj);
}

View File

@ -1,6 +1,6 @@
# Stack Auth: Open-source Clerk/Auth0 alternative
## [📘 Docs](https://docs.stack-auth.com) | [☁️ Hosted Version](https://stack-auth.com/) | [✨ Demo](https://demo.stack-auth.com/) | [🎮 Discord](https://discord.stack-auth.com) | [GitHub](https://github.com/stack-auth/stack)
## [📘 Docs](https://docs.stack-auth.com) | [☁️ Hosted Version](https://stack-auth.com/) | [✨ Demo](https://demo.stack-auth.com/) | [🎮 Discord](https://discord.stack-auth.com) | [GitHub](https://github.com/stack-auth/stack-auth)
Stack Auth is a managed user authentication solution. It is developer-friendly and fully open-source (licensed under MIT and AGPL).