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

Commit 30978f1

Browse files
committed
more broken links
1 parent 48b63e7 commit 30978f1

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

cypress/e2e/broken-links.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('Broken links test suite', () => {
8585
cy.log(`link already checked`)
8686
expect(VISITED_SUCCESSFUL_LINKS[url]).to.be.true
8787
} else {
88-
cy.wait(100)
88+
cy.wait(25)
8989

9090
req(url).then((res: Cypress.Response<any>) => {
9191
let acceptableCodes = CORRECT_CODES

docs/guides/nodejs/uptime.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ We are ready to play with our new uptime monitoring app! Navigate to http://loca
541541

542542
### Deployment
543543

544-
As a next step, [deploy](/get-started/deployment) your app to the cloud of your choice.
544+
As a next step, [deploy](/get-started/foundations/deployment) your app to the cloud of your choice.
545545

546546
## Conclusion
547547

docs/misc/contributions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Join the conversation about Nitric-related topics in the [Nitric repository on G
1616

1717
Your feedback and ideas are incredibly helpful to keep improving Nitric. If you encounter any issues or have suggestions for new features, please create a [bug report](https://github.com/nitrictech/nitric/issues) or submit a [feature request](https://github.com/nitrictech/nitric/issues/new?template=feature_request.md).
1818

19-
For detailed instructions on reporting bugs, refer to the [Creating Bug Reports guide](/support#bug-reports).
19+
For detailed instructions on reporting bugs, refer to the [Creating Bug Reports guide](/misc/support#bug-reports).
2020

2121
## Areas to Jump In
2222

docs/misc/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Nitric helps with code and application portability across cloud providers and th
2020

2121
Nitric is designed for extensibility so you're never restricted. For services/APIs/etc. that aren't supported, you'll continue to be able to directly target those services in your code. While this may result in coupling between applications and cloud providers, continuing to use the bulk of Nitric's APIs keeps that to a minimum.
2222

23-
Additionally, being an Open Source project, you're welcome to [contribute](/contributions) additional services and plugins to the Nitric project to permanently add support for these integrations.
23+
Additionally, being an Open Source project, you're welcome to [contribute](/misc/contributions) additional services and plugins to the Nitric project to permanently add support for these integrations.
2424

2525
## How do I view my deployments on the Pulumi dashboard?
2626

docs/providers/custom/create.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: 'How to build a custom provider using Nitric'
66

77
This guide is for those that are interested in building their own custom provider to target a new cloud, implement their own internal development platform, or just curious to know how it all works. Nitric's main goal is to keep a general interface for interacting with cloud resources, regardless of the provider. This abstraction enables portability, developer efficiency, and standardizes the way that code is written across teams.
88

9-
This guide assumes you understand the basis of the Nitric [providers](/providers). If you are looking to just replace one or two resources from a standard provider, consider looking at the documentation [here](./extend-standard-provider).
9+
This guide assumes you understand the basis of the Nitric [providers](/providers). If you are looking to just replace one or two resources from a standard provider, consider looking at the documentation [here](./extend).
1010

1111
<Note>
1212
Our providers and helpers are written in Go, however our provider's are based

docs/providers/custom/extend.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ You'll notice that we also override the `Bucket` value to use the pulumi spaces
135135

136136
### Config
137137

138-
Now we can create an extension configuration to allow adding digital ocean configuration to our stack file. You can find the base AWS configuration [here](../aws/configuration).
138+
Now we can create an extension configuration to allow adding digital ocean configuration to our stack file. You can find the base AWS configuration [here](../pulumi/aws/configuration).
139139

140140
Start by defining the type of configuration we want. To deploy to digital ocean we require setting a Digital Ocean token as well as a spaces key, secret, and region.
141141

docs/providers/pulumi/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'How Nitric integrates with Pulumi'
44

55
# Nitric Pulumi Providers
66

7-
Nitric enables application portability and deployments through pluggable modules known as [providers](/get-started/foundations/providers). This allows applications to be deployed with many different Infrastructure Automation technologies, including [Pulumi](https://pulumi.com). Nitric has pre-built providers that use Pulumi to deploy to [AWS](/providers/pulumi/aws), [Azure](/providers/pulumi/azure) and [Google Cloud](/providers/pulumi/gcp).
7+
Nitric enables application portability and deployments through pluggable modules known as [providers](/get-started/foundations/deployment#providers). This allows applications to be deployed with many different Infrastructure Automation technologies, including [Pulumi](https://pulumi.com). Nitric has pre-built providers that use Pulumi to deploy to [AWS](/providers/pulumi/aws), [Azure](/providers/pulumi/azure) and [Google Cloud](/providers/pulumi/gcp).
88

99
<Note>
1010
All pre-built Pulumi providers are [direct deployment

docs/providers/terraform/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: 'How Nitric integrates with Terraform'
44

55
# Nitric Terraform Providers
66

7-
Nitric enables application portability and deployments through pluggable modules known as [providers](/get-started/foundations/providers). This allows applications to be deployed with many different Infrastructure Automation technologies, including [Terraform](https://www.terraform.io/). Nitric has pre-built providers that use Terraform to deploy to [AWS](/providers/terraform/aws) and [Google Cloud](/providers/terraform/gcp), with Azure support planned.
7+
Nitric enables application portability and deployments through pluggable modules known as [providers](/get-started/foundations/deployment#providers). This allows applications to be deployed with many different Infrastructure Automation technologies, including [Terraform](https://www.terraform.io/). Nitric has pre-built providers that use Terraform to deploy to [AWS](/providers/terraform/aws) and [Google Cloud](/providers/terraform/gcp), with Azure support planned.
88

99
<Note>
1010
All pre-built Terraform providers are [IaC generating

docs/reference/cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ nitric start
105105
106106
This will run the Nitric server for local testing. This will output local endpoints for your apis and open the [local dashboard](/get-started/foundations/projects/local-development) for testing.
107107
108-
For more information on local development, see the [local development](/reference/cli/local-development) docs.
108+
For more information on local development, see the [local development](/get-started/foundations/projects/local-development) docs.
109109
110110
## Deployment
111111

docs/reference/languages.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ The following runtimes are currently supported or are in development:
1818
| [Python](/reference/python) | Full Support | [https://github.com/nitrictech/python-sdk](https://github.com/nitrictech/python-sdk) |
1919
| [Go](/reference/go) | Full Support | [https://github.com/nitrictech/go-sdk](https://github.com/nitrictech/go-sdk) |
2020
| [Dart](/reference/dart) | Experimental | [https://github.com/nitrictech/dart-sdk](https://github.com/nitrictech/dart-sdk) |
21-
| [C#](/reference/csharp) | v0 Support | [https://github.com/nitrictech/dotnet-sdk](https://github.com/nitrictech/dotnet-sdk) |
22-
| [JVM](/reference/jvm) | v0 Support | [https://github.com/nitrictech/jvm-sdk](https://github.com/nitrictech/jvm-sdk) |
21+
| [C#](/reference/csharp/v0) | v0 Support | [https://github.com/nitrictech/dotnet-sdk](https://github.com/nitrictech/dotnet-sdk) |
22+
| [JVM](/reference/jvm/v0) | v0 Support | [https://github.com/nitrictech/jvm-sdk](https://github.com/nitrictech/jvm-sdk) |
2323

2424
If a language you want isn't listed, come chat with us on [Discord](https://nitric.io/chat).
2525

0 commit comments

Comments
 (0)