Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit a9f6469

Browse files
committed
add link to default services matrix on each resource page
1 parent 19ab4e5 commit a9f6469

File tree

10 files changed

+40
-0
lines changed

10 files changed

+40
-0
lines changed

docs/apis.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,3 +1308,7 @@ accountsApi.get("/orgs/:id", (ctx) async {
13081308
```
13091309

13101310
</CodeSwitcher>
1311+
1312+
## Default Cloud Services
1313+
1314+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/batch.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,3 +239,7 @@ void main() {
239239
```
240240

241241
</CodeSwitcher>
242+
243+
## Default Cloud Services
244+
245+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/http.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,7 @@ http(bootstrap)
5353
</TabItem>
5454

5555
</Tabs>
56+
57+
## Default Cloud Services
58+
59+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/keyvalue.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,3 +437,7 @@ keys.forEach((String key) {
437437
```
438438

439439
</CodeSwitcher>
440+
441+
## Default Cloud Services
442+
443+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/messaging.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -702,3 +702,7 @@ await Future.wait(messages.map((message) async {
702702
It's common to ask when to use a queue or a topic. From a publisher's point of view, both queues and topics are almost identical. The difference is primarily on the receiver/subscriber side. Topics push new messages to their subscribers, immediately spinning up workers to process them, while queues rely on the receiver to ask for new messages to process.
703703

704704
For these reasons, we usually default to Topics. Queues are more suitable for batch workloads or situations where there are occasional surges of requests that can be processed at a later time.
705+
706+
## Default Cloud Services
707+
708+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/schedules.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,3 +398,7 @@ If you're using schedules on Azure you will be charged for at least 1 container
398398
This may change in the future as Nitric's Azure provider evolves, allowing for
399399
scale to zero as is the case with other providers.
400400
</Note>
401+
402+
## Default Cloud Services
403+
404+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/secrets.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,3 +312,7 @@ final value = latest.value;
312312
```
313313

314314
</CodeSwitcher>
315+
316+
## Default Cloud Services
317+
318+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/sql.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,3 +336,7 @@ Here are a few alternatives that work well with Nitric:
336336
- [PlanetScale](https://planetscale.com/) (MySQL)
337337

338338
Guides are available for some of these alternatives in the [guides section](/guides).
339+
340+
## Default Cloud Services
341+
342+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/storage.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -675,3 +675,7 @@ profiles.on(BlobEventType.delete, "*", (ctx) async {
675675
```
676676

677677
</CodeSwitcher>
678+
679+
## Default Cloud Services
680+
681+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

docs/websockets.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,3 +459,7 @@ socket.onMessage((ctx) async {
459459
Do not send messages to a connection during it's `connect` callback, if you
460460
need to acknowledge connection, do so by using a [topic](./messaging)
461461
</Note>
462+
463+
## Default Cloud Services
464+
465+
Each cloud provider comes with a set of default services used when deploying resources. You can find the full list of these default cloud services in the [Deploy documentation: Default Cloud Services](/providers#default-cloud-services).

0 commit comments

Comments
 (0)