You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. After that you can run the apps simultaneously with the following.
80
+
3. After that you can run the apps simultaneously with the following:
81
81
```sh
82
82
pnpm dev # start all the applications
83
83
```
@@ -117,8 +117,8 @@ Installing a package in a specific workspace requires you to move to the workspa
117
117
118
118
For example:
119
119
120
-
1.`cd apps/studio`: move to the `studio` workspace
121
-
2.`pnpm add react`: installs `react` into `studio` workspace
120
+
1.`cd apps/studio`: move to the `studio` workspace.
121
+
2.`pnpm add react`: installs `react` into `studio` workspace.
122
122
123
123
124
124
---
@@ -145,7 +145,7 @@ First, make sure you have the Docker installed on your device. You can download
145
145
cp .env.example .env
146
146
```
147
147
148
-
3. Run docker
148
+
3. Run docker:
149
149
150
150
```sh
151
151
docker compose up
@@ -186,9 +186,9 @@ Create a new entry in the [`redirects.js`](https://github.com/supabase/supabase/
186
186
We support "federating" docs, meaning doc content can come directly from external repos other than [`supabase/supabase`](https://github.com/supabase/supabase).
187
187
188
188
- It's great for things like client libs who have their own set of docs that we don't want to duplicate on the official Supabase docs (eg. [`supabase/vecs`](https://github.com/supabase/vecs)).
189
-
- No duplication or manual steps required - fetches and generates automatically as part of the docs build pipeline
190
-
- It's flexible - you can "embed" external docs nearly anywhere at any level in Supabase docs, but they will feel native
191
-
- If you are maintaining a repo containing docs that you think could also live in Supabase docs, feel free to create an issue and we can work together to integrate
189
+
- No duplication or manual steps required - fetches and generates automatically as part of the docs build pipeline.
190
+
- It's flexible - you can "embed" external docs nearly anywhere at any level in Supabase docs, but they will feel native.
191
+
- If you are maintaining a repo containing docs that you think could also live in Supabase docs, feel free to create an issue and we can work together to integrate.
192
192
193
193
Federated docs work using Next.js's build pipeline. We use `getStaticProps()` to fetch remote documentation (ie. markdown) at build time which is processed and passed to the respective page within the docs.
0 commit comments