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
| Concept | Explain a concept, context, or background information about a product or its features. |[Template](https://gitlab.com/tgdp/templates/-/tree/main/concept)|
150
150
| How-to | A concise set of numbered steps to do one task with the product. |[Template](https://gitlab.com/tgdp/templates/-/tree/main/how-to)|
151
-
| Tutorial | Instructions to set up an example project intended for hands-on learning. |[Template](https://gitlab.com/tgdp/templates/-/tree/main/tutorial)|
151
+
| Tutorial | Instructions to set up an example project intended for hands-on learning. |[Template](https://gitlab.com/tgdp/templates/-/tree/main/tutorial)|
152
152
| Troubleshooting | Common problems experienced by users, an explanation of the causes, and steps to resolve the issue. |[Template](https://gitlab.com/tgdp/templates/-/tree/main/troubleshooting)|
153
153
| Reference | Specific, in-depth details about a particular topic. |[Template](https://gitlab.com/tgdp/templates/-/tree/main/reference)|
154
154
| Release note | Communicate new features, improvements, bug fixes, and known issues about a product. |[Template](https://gitlab.com/tgdp/templates/-/tree/main/release-notes)|
@@ -218,22 +218,22 @@ Certain Airbyte products reserve some platform features. To avoid confusion and
218
218
219
219
To enable badges, include `products` in the Markdown metadata. The following values are possible, and you can combine them as needed.
220
220
221
-
**Badge display:** all 5 badges always appear in order - Core, Standard, Pro, Enterprise Flex, Self-Managed Enterprise. Available badges appear highlighted, unavailable badges appear grayed out.
221
+
**Badge display:** all 6 badges always appear in order - Core, Standard, Plus, Pro, Enterprise Flex, Self-Managed Enterprise. Available badges appear highlighted, unavailable badges appear grayed out.
222
222
223
223
**Metadata keys:**
224
224
225
-
-`all`: Core, Self-Managed Enterprise, and Standard - doesn't include Pro, Enterprise Flex, or Embedded
225
+
-`all`: Core, Self-Managed Enterprise, Standard, and Plus - doesn't include Pro, Enterprise Flex, or Embedded
226
226
-`oss-community`: Core only
227
227
-`oss-enterprise`: Self-Managed Enterprise only
228
-
-`cloud`: Standard only (also enables Pro and Enterprise Flex due to Cloud tier inheritance)
228
+
-`cloud`: Standard and Plus (also enables Pro and Enterprise Flex due to Cloud tier inheritance)
229
229
-`cloud-teams`: Pro only (also enables Enterprise Flex due to Cloud tier inheritance)
230
230
-`enterprise-flex`: Enterprise Flex only
231
231
-`embedded`: Embedded only (hidden if not specified - there is no off state for the Embedded badge)
- If you specify `cloud`: Standard, Pro, and Enterprise Flex badges all become enabled
236
-
- If you specify `cloud-teams`: Pro and Enterprise Flex badges become enabled - Standard turns off
235
+
- If you specify `cloud`: Standard, Plus, Pro, and Enterprise Flex badges all become enabled
236
+
- If you specify `cloud-teams`: Pro and Enterprise Flex badges become enabled - Standard and Plus turn off
237
237
- If you specify `enterprise-flex`: Only Enterprise Flex badge becomes enabled
238
238
239
239
**Self-managed plans** Core and Self-Managed Enterprise don't inherit from each other.
@@ -250,7 +250,7 @@ products: oss-community
250
250
Some text.
251
251
```
252
252
253
-
In this example, Pro, and Enterprise Flex badges appear highlighted due to Cloud tier inheritance, while Core, Standard, and Self-Managed Enterprise badges appear grayed out.
253
+
In this example, Pro, and Enterprise Flex badges appear highlighted due to Cloud tier inheritance, while Core, Standard, Plus, and Self-Managed Enterprise badges appear grayed out.
254
254
255
255
```markdown
256
256
---
@@ -408,18 +408,17 @@ You can run Vale in a command line tool or you can install an extension for most
408
408
```
409
409
410
410
2. Lint your content. You can lint a single file or an entire directory and its subdirectories.
411
-
412
411
- To lint a file, type the relative path to the file.
413
412
414
-
```bash
415
-
vale ../docs/myfolder/myfile.md
416
-
```
413
+
```bash
414
+
vale ../docs/myfolder/myfile.md
415
+
```
417
416
418
417
- To lint a folder, type the relative path to that folder and end with a slash.
419
418
420
-
```bash
421
-
vale ../docs/myfolder/
422
-
```
419
+
```bash
420
+
vale ../docs/myfolder/
421
+
```
423
422
424
423
- For more command-line tool help, see [Vale's docs](https://vale.sh/docs/cli).
- To lint a single directory but not its subdirectories:
453
+
- To lint a single directory but not its subdirectories:
455
454
456
-
```bash
457
-
markdownlint-cli2 "./docs/myfolder/*.md"
458
-
```
455
+
```bash
456
+
markdownlint-cli2 "./docs/myfolder/*.md"
457
+
```
459
458
460
-
- To lint a directory and its subdirectories recursively:
459
+
- To lint a directory and its subdirectories recursively:
461
460
462
-
```bash
463
-
markdownlint-cli2 "./docs/folder/**/*.md"
464
-
```
461
+
```bash
462
+
markdownlint-cli2 "./docs/folder/**/*.md"
463
+
```
465
464
466
-
- To auto-fix issues, add a `--fix` modifier. MarkDownLint can fix most issues on its own, but it might not fix them all.
465
+
- To auto-fix issues, add a `--fix` modifier. MarkDownLint can fix most issues on its own, but it might not fix them all.
467
466
468
-
```bash
469
-
markdownlint-cli2 --fix "../docs/myfolder/*.md"
470
-
```
467
+
```bash
468
+
markdownlint-cli2 --fix "../docs/myfolder/*.md"
469
+
```
471
470
472
471
For full usage details, see the tool's [GitHub readme](https://github.com/DavidAnson/markdownlint-cli2?tab=readme-ov-file#use).
473
472
@@ -525,19 +524,17 @@ When you release a new major version of Airbyte like 2.0 or 2.1, generate a docu
525
524
526
525
2. Open a terminal, change to the docusaurus folder, and run the command to generate a version. `<version>` can be a number like `2.0` or anything else you like. Be consistent with Airbyte and other versions on the docs site. Whatever string you enter here later appears in the docs UI.
527
526
528
-
```bash
529
-
cd docusaurus
530
-
pnpm run docusaurus docs:version:platform <version>
531
-
```
532
-
533
-
Docusaurus automatically does three things at this point. It:
527
+
```bash
528
+
cd docusaurus
529
+
pnpm run docusaurus docs:version:platform <version>
530
+
```
534
531
535
-
- Defines the existence of that version in the `/docusaurus/platform_versions.json` file
536
-
- Creates a physical copy of the versioned platform docs in `/docusaurus/platform_versioned_docs`
537
-
- Creates a physical copy of the versioned platform sidebar in `/docusaurus/platform_versioned_sidebars`
532
+
Docusaurus automatically does three things at this point. It:
533
+
- Defines the existence of that version in the `/docusaurus/platform_versions.json` file
534
+
- Creates a physical copy of the versioned platform docs in `/docusaurus/platform_versioned_docs`
535
+
- Creates a physical copy of the versioned platform sidebar in `/docusaurus/platform_versioned_sidebars`
538
536
539
537
3. Test your build locally to make sure everything looks as expected. Verify:
540
-
541
538
- The docs site builds locally
542
539
- Your local Docusaurus build doesn't report new broken links
543
540
- The version selector in the navigation contains your new version
Copy file name to clipboardExpand all lines: docs/platform/readme.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,12 @@ Airbyte is available as a self-managed, hybrid, or fully managed cloud solution.
27
27
28
28
### Cloud and hybrid plans
29
29
30
-
<Gridcolumns="3">
30
+
<Gridcolumns="2">
31
31
32
32
<CardWithIcontitle="Standard"description="A cloud solution that provides a fully managed experience for data replication. Focus on moving data while Airbyte manages the infrastructure. Free 30-day trial."ctaText="Sign up"ctaLink="https://cloud.airbyte.com/signup"icon="fa-cloud" />
33
33
34
+
<CardWithIcontitle="Plus"description="A cloud solution with all the capabilities of Standard, plus higher priority support and predictable, capacity-based annual pricing."ctaText="Talk to Sales"ctaLink="https://airbyte.com/company/talk-to-sales"icon="fa-lock" />
35
+
34
36
<CardWithIcontitle="Pro"description="A cloud solution for organizations looking to scale efficiently. Role based access control, single sign on, and more ensure Pro is a robust solution that can grow with your team."ctaText="Talk to Sales"ctaLink="https://airbyte.com/company/talk-to-sales"icon="fa-lock" />
35
37
36
38
<CardWithIcontitle="Enterprise Flex"description="An enterprise-grade, hybrid solution with for organizatons seeking the convenience of a fully managed solution with separate data planes for compliance and data sovereignty."ctaText="Learn more"ctaLink="enterprise-flex"icon="fa-lock" />
@@ -43,7 +45,7 @@ Once your Airbyte instance is up and running, there's a way to use Airbyte that'
43
45
44
46
### User interface
45
47
46
-
Self-managed and cloud plans come with a carefully-crafted user interface that walks you through setting up connections and automating syncs. This is a great choice if you're not a developer, aren't concerned about version control, or you're just seeing what Airbyte can do for you.
48
+
Self-managed and cloud plans come with a carefullycrafted user interface that walks you through setting up connections and automating syncs. This is a great choice if you're not a developer, aren't concerned about version control, or you're just seeing what Airbyte can do for you.
0 commit comments