Skip to content

Commit f389958

Browse files
committed
Updating repo
1 parent 6528bbe commit f389958

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

.github/pull_request_template.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
**IMPORTANT**:
33
44
Please do not create a Pull Request without creating an issue first. A similar PR may already be submitted!
5-
Please search among the [Pull requests](https://github.com/iamhectorsosa/supabase-modules/pulls) before creating one.
5+
Please search among the [Pull requests](https://github.com/webscopeio/supabase-modules/pulls) before creating one.
66
7-
For more information, see the [`CONTRIBUTING`(https://github.com/iamhectorsosa/supabase-modules/blob/main/CONTRIBUTING.md) guide.
7+
For more information, see the [`CONTRIBUTING`(https://github.com/webscopeio/supabase-modules/blob/main/CONTRIBUTING.md) guide.
88
99
-->
1010

docs/.vitepress/config.mts

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ export default defineConfig({
8282
},
8383
],
8484

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

8787
editLink: {
8888
pattern:
89-
"https://github.com/iamhectorsosa/supabase-modules/blob/main/docs/:path",
89+
"https://github.com/webscopeio/supabase-modules/blob/main/docs/:path",
9090
},
9191
search: {
9292
provider: "local",

docs/getting-started/email.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Before you run any of these commands make sure to create an `./emails` directory
3434
::: code-group
3535

3636
```bash [Using degit]
37-
degit iamhectorsosa/supabase-modules/apps/next/emails emails
37+
degit webscopeio/supabase-modules/apps/next/emails emails
3838
```
3939

4040
<<< ../../apps/next/emails/_shared/styles.ts[_shared/styles]

docs/getting-started/existing-project.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ supabase init
5959
```
6060

6161
```bash [Using degit]
62-
degit iamhectorsosa/supabase-modules/apps/next/supabase supabase
62+
degit webscopeio/supabase-modules/apps/next/supabase supabase
6363
```
6464

6565
:::

docs/getting-started/from-example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This example project is based on a **Next 14 application**. More example project
1111
Clone the repository using `gh` CLI and then install the project's dependencies.
1212

1313
```bash
14-
gh repo clone iamhectorsosa/supabase-modules
14+
gh repo clone webscopeio/supabase-modules
1515
```
1616

1717
```bash

docs/getting-started/supabase.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ supabase init
2525
```
2626

2727
```bash [Using degit]
28-
degit iamhectorsosa/supabase-modules/apps/next/supabase supabase
28+
degit webscopeio/supabase-modules/apps/next/supabase supabase
2929
```
3030

3131
:::

docs/modules/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ supabase gen types typescript --local > modules/types/index.ts
2020

2121
```bash [Using degit]
2222
cd modules
23-
degit iamhectorsosa/supabase-modules/apps/next/modules/types types
23+
degit webscopeio/supabase-modules/apps/next/modules/types types
2424
```
2525

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

3636
```bash [Using degit]
3737
cd modules
38-
degit iamhectorsosa/supabase-modules/apps/next/modules/utils utils
38+
degit webscopeio/supabase-modules/apps/next/modules/utils utils
3939
```
4040

4141
<<< ../../apps/next/modules/utils/client.ts [client.ts]

docs/modules/user.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ If you are starting from an example project - all types, utilities, and modules
88

99
```bash [Install module]
1010
cd modules
11-
degit iamhectorsosa/supabase-modules/apps/next/modules/user user
11+
degit webscopeio/supabase-modules/apps/next/modules/user user
1212
```
1313

1414
```bash [Install components]
1515
cd components
16-
degit iamhectorsosa/supabase-modules/apps/next/components/user user
16+
degit webscopeio/supabase-modules/apps/next/components/user user
1717
```
1818

1919
:::

scripts/wizard.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ async function wizard() {
9797
const s = spinner();
9898
s.start("Installing project files... 👷🏽");
9999
await asyncExec(
100-
`degit iamhectorsosa/supabase-modules/apps/next/supabase ${dir}/supabase --force`
100+
`degit webscopeio/supabase-modules/apps/next/supabase ${dir}/supabase --force`
101101
);
102102
await asyncExec(
103-
`degit iamhectorsosa/supabase-modules/apps/next/modules ${dir}/modules --force`
103+
`degit webscopeio/supabase-modules/apps/next/modules ${dir}/modules --force`
104104
);
105105

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

133133
for (module in modulesToInstall) {
134134
await asyncExec(
135-
`degit iamhectorsosa/iamhectorsosa/src/components/layout ${dir}/supabase --force`
135+
`degit webscopeio/webscopeio/src/components/layout ${dir}/supabase --force`
136136
);
137137
}
138138

0 commit comments

Comments
 (0)