Skip to content

Commit

Permalink
Updating repo
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhectorsosa committed May 26, 2024
1 parent 6528bbe commit f389958
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
**IMPORTANT**:
Please do not create a Pull Request without creating an issue first. A similar PR may already be submitted!
Please search among the [Pull requests](https://github.com/iamhectorsosa/supabase-modules/pulls) before creating one.
Please search among the [Pull requests](https://github.com/webscopeio/supabase-modules/pulls) before creating one.
For more information, see the [`CONTRIBUTING`(https://github.com/iamhectorsosa/supabase-modules/blob/main/CONTRIBUTING.md) guide.
For more information, see the [`CONTRIBUTING`(https://github.com/webscopeio/supabase-modules/blob/main/CONTRIBUTING.md) guide.
-->

Expand Down
4 changes: 2 additions & 2 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ export default defineConfig({
},
],

socialLinks: [{ icon: "github", link: "https://github.com/iamhectorsosa" }],
socialLinks: [{ icon: "github", link: "https://github.com/webscopeio" }],

editLink: {
pattern:
"https://github.com/iamhectorsosa/supabase-modules/blob/main/docs/:path",
"https://github.com/webscopeio/supabase-modules/blob/main/docs/:path",
},
search: {
provider: "local",
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Before you run any of these commands make sure to create an `./emails` directory
::: code-group

```bash [Using degit]
degit iamhectorsosa/supabase-modules/apps/next/emails emails
degit webscopeio/supabase-modules/apps/next/emails emails
```

<<< ../../apps/next/emails/_shared/styles.ts[_shared/styles]
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/existing-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ supabase init
```

```bash [Using degit]
degit iamhectorsosa/supabase-modules/apps/next/supabase supabase
degit webscopeio/supabase-modules/apps/next/supabase supabase
```

:::
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/from-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This example project is based on a **Next 14 application**. More example project
Clone the repository using `gh` CLI and then install the project's dependencies.

```bash
gh repo clone iamhectorsosa/supabase-modules
gh repo clone webscopeio/supabase-modules
```

```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/supabase.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ supabase init
```

```bash [Using degit]
degit iamhectorsosa/supabase-modules/apps/next/supabase supabase
degit webscopeio/supabase-modules/apps/next/supabase supabase
```

:::
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ supabase gen types typescript --local > modules/types/index.ts

```bash [Using degit]
cd modules
degit iamhectorsosa/supabase-modules/apps/next/modules/types types
degit webscopeio/supabase-modules/apps/next/modules/types types
```

:::
Expand All @@ -35,7 +35,7 @@ Make sure you work in a `/modules` directory from the root repository.

```bash [Using degit]
cd modules
degit iamhectorsosa/supabase-modules/apps/next/modules/utils utils
degit webscopeio/supabase-modules/apps/next/modules/utils utils
```

<<< ../../apps/next/modules/utils/client.ts [client.ts]
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ If you are starting from an example project - all types, utilities, and modules

```bash [Install module]
cd modules
degit iamhectorsosa/supabase-modules/apps/next/modules/user user
degit webscopeio/supabase-modules/apps/next/modules/user user
```

```bash [Install components]
cd components
degit iamhectorsosa/supabase-modules/apps/next/components/user user
degit webscopeio/supabase-modules/apps/next/components/user user
```

:::
Expand Down
6 changes: 3 additions & 3 deletions scripts/wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ async function wizard() {
const s = spinner();
s.start("Installing project files... 👷🏽");
await asyncExec(
`degit iamhectorsosa/supabase-modules/apps/next/supabase ${dir}/supabase --force`
`degit webscopeio/supabase-modules/apps/next/supabase ${dir}/supabase --force`
);
await asyncExec(
`degit iamhectorsosa/supabase-modules/apps/next/modules ${dir}/modules --force`
`degit webscopeio/supabase-modules/apps/next/modules ${dir}/modules --force`
);

s.stop("Project files successfully installed 👷🏽");
Expand Down Expand Up @@ -132,7 +132,7 @@ async function wizard() {

for (module in modulesToInstall) {
await asyncExec(
`degit iamhectorsosa/iamhectorsosa/src/components/layout ${dir}/supabase --force`
`degit webscopeio/webscopeio/src/components/layout ${dir}/supabase --force`
);
}

Expand Down

0 comments on commit f389958

Please sign in to comment.