Skip to content

Commit

Permalink
Docs: Fix degit commands (#1623)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowOnPaper committed Jul 4, 2024
1 parent 2159373 commit 1210baf
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/pages/tutorials/github-oauth/astro.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/astro/github-oauth) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/astro/github-oauth).

```
npx degit https://github.com/lucia-auth/examples/tree/main/astro/github-oauth <directory_name>
npx degit https://github.com/lucia-auth/examples/astro/github-oauth <directory_name>
```

## Create an OAuth App
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/github-oauth/nextjs-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/nextjs-app/github-oauth) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/nextjs-app/github-oauth).

```
npx degit https://github.com/lucia-auth/examples/tree/main/nextjs-app/github-oauth <directory_name>
npx degit https://github.com/lucia-auth/examples/nextjs-app/github-oauth <directory_name>
```

## Create an OAuth App
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/github-oauth/nextjs-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/nextjs-pages/github-oauth) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/nextjs-pages/github-oauth).

```
npx degit https://github.com/lucia-auth/examples/tree/main/nextjs-pages/github-oauth <directory_name>
npx degit https://github.com/lucia-auth/examples/nextjs-pages/github-oauth <directory_name>
```

## Create an OAuth App
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/github-oauth/nuxt.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/nuxt/github-oauth) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/nuxt/github-oauth).

```
npx degit https://github.com/lucia-auth/examples/tree/main/nuxt/github-oauth <directory_name>
npx degit https://github.com/lucia-auth/examples/nuxt/github-oauth <directory_name>
```

## Create an OAuth App
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/github-oauth/sveltekit.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/sveltekit/github-oauth) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/sveltekit/github-oauth).

```
npx degit https://github.com/lucia-auth/examples/tree/main/sveltekit/github-oauth <directory_name>
npx degit https://github.com/lucia-auth/examples/sveltekit/github-oauth <directory_name>
```

## Create an OAuth App
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/username-and-password/astro.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/astro/username-and-password) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/astro/username-and-password).

```
npx degit https://github.com/lucia-auth/examples/tree/main/astro/username-and-password <directory_name>
npx degit https://github.com/lucia-auth/examples/astro/username-and-password <directory_name>
```

## Update database
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/username-and-password/nextjs-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database as described in the [Gett
An [example project](https://github.com/lucia-auth/examples/tree/main/nextjs-app/username-and-password) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/nextjs-app/username-and-password).

```
npx degit https://github.com/lucia-auth/examples/tree/main/nextjs-app/username-and-password <directory_name>
npx degit https://github.com/lucia-auth/examples/nextjs-app/username-and-password <directory_name>
```

## Update database
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/username-and-password/nextjs-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/nextjs-pages/username-and-password) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/nextjs-pages/username-and-password).

```
npx degit https://github.com/lucia-auth/examples/tree/main/nextjs-pages/username-and-password <directory_name>
npx degit https://github.com/lucia-auth/examples/nextjs-pages/username-and-password <directory_name>
```

## Update database
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/username-and-password/nuxt.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/nuxt/username-and-password) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/nuxt/username-and-password).

```
npx degit https://github.com/lucia-auth/examples/tree/main/nuxt/username-and-password <directory_name>
npx degit https://github.com/lucia-auth/examples/nuxt/username-and-password <directory_name>
```

## Update database
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/tutorials/username-and-password/sveltekit.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before starting, make sure you've set up your database and middleware as describ
An [example project](https://github.com/lucia-auth/examples/tree/main/sveltekit/username-and-password) based on this tutorial is also available. You can clone the example locally or [open it in StackBlitz](https://stackblitz.com/github/lucia-auth/examples/tree/main/sveltekit/username-and-password).

```
npx degit https://github.com/lucia-auth/examples/tree/main/sveltekit/username-and-password <directory_name>
npx degit https://github.com/lucia-auth/examples/sveltekit/username-and-password <directory_name>
```

## Update database
Expand Down

0 comments on commit 1210baf

Please sign in to comment.