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

Commit cb4da14

Browse files
committed
broken links wip
1 parent 5f76137 commit cb4da14

File tree

44 files changed

+50
-50
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+50
-50
lines changed

docs/get-started/foundations/deployment/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ You can read about why this separation is important on the [why nitric](/get-sta
1010

1111
<Note>
1212
If you're new to Nitric we recommend starting with the [quickstart
13-
guide](/guides/quickstart) to get a feel for how Nitric works. You can return
14-
to this page later to learn more about the deployment process and how to
15-
customize it.
13+
guide](/get-started/quickstart) to get a feel for how Nitric works. You can
14+
return to this page later to learn more about the deployment process and how
15+
to customize it.
1616
</Note>
1717

1818
## Provider Types

docs/get-started/foundations/infrastructure/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Nitric allows applications to declare infrastructure requirements a
44

55
# Infrastructure
66

7-
If you haven't read [Why Nitric](/get-started/get-started/foundations/why-nitric) yet, you might want to start there. It explains the 'why' behind Nitric, which can help you understand the 'what' and 'how' of Nitric.
7+
If you haven't read [Why Nitric](/get-started/foundations/why-nitric) yet, you might want to start there. It explains the 'why' behind Nitric, which can help you understand the 'what' and 'how' of Nitric.
88

99
Nitric applies the concept of Infrastructure from Code (IfC) in a very specific way, to enhance Infrastructure as Code (IaC) and help applications with platform specific Separation of Concerns (SoC).
1010

docs/get-started/foundations/infrastructure/resources.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: An overview of cloud resources provided by the Nitric framework
66

77
Nitric provides cloud-native building blocks that make it simple to declare the resources you need as part of your application code.
88

9-
The Nitric deployment engine will run through your code at deployment time, collecting a graph of all the required resources and their interactions. This information is forwarded to a [Nitric plugin](/foundations/deployment#providers) during deployment, which provisions the resources in the cloud.
9+
The Nitric deployment engine will run through your code at deployment time, collecting a graph of all the required resources and their interactions. This information is forwarded to a [Nitric plugin](/get-started/foundations/deployment#providers) during deployment, which provisions the resources in the cloud.
1010

1111
During development though, you can interact with these resources as if they were local objects, making it easy to build and test your application. Here we'll discuss the different types of resources you can declare in Nitric, and some best practices for working with them.
1212

docs/get-started/foundations/projects/configuration.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The name of your project. This is used to identify your project and it used when
3939

4040
### `services`
4141

42-
A list of [service](/foundations/infrastructure/services) types that make up your project. Typically, nitric will build each service in your project into a separate container image. Each service can have its own runtime, build configuration, and start command.
42+
A list of [service](/get-started/foundations/infrastructure/services) types that make up your project. Typically, nitric will build each service in your project into a separate container image. Each service can have its own runtime, build configuration, and start command.
4343

4444
#### `match`
4545

@@ -95,7 +95,7 @@ If a runtime is provided it must match the name of a runtime configuration in th
9595

9696
Type is essentially the name for this group of services. It is used to group services together for deployment and resource management. If not provided, the service will be grouped under the 'default' type.
9797

98-
The most common use case for this is grouping service with similar deployed resource requirements together. For example, you make have a set of services that required additional vCPU or memory resources at runtime. You can group these services together under a specific type and apply resource constraints to that type in a [stack file](/foundations/deployment/stacks).
98+
The most common use case for this is grouping service with similar deployed resource requirements together. For example, you make have a set of services that required additional vCPU or memory resources at runtime. You can group these services together under a specific type and apply resource constraints to that type in a [stack file](/get-started/foundations/deployment/stacks).
9999

100100
For example, if you have a set of services that require additional memory, you can group them together under a type named `memory-intensive`, separate from the default type.
101101

@@ -144,9 +144,9 @@ go run ./services/service2/main.go
144144

145145
### `batch-services` (optional)
146146

147-
A list of [batch service](/foundations/infrastructure/services#batch-services) types that make up your project. Batch services are used to run high-performance computing tasks, data processing or tasks requiring GPUs, or a large number of vCPUs or memory.
147+
A list of [batch service](/get-started/foundations/infrastructure/services#batch-services) types that make up your project. Batch services are used to run high-performance computing tasks, data processing or tasks requiring GPUs, or a large number of vCPUs or memory.
148148

149-
Batch services are similar to services but are optimized for running batch processing tasks. You can read more about batch services in the [batch service](/foundations/infrastructure/services#batch-services) section.
149+
Batch services are similar to services but are optimized for running batch processing tasks. You can read more about batch services in the [batch service](/get-started/foundations/infrastructure/services#batch-services) section.
150150

151151
The configuration options for `batch-services` are the same as for `services`.
152152

docs/get-started/quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ After your service is running, it will register itself with the server. All the
238238

239239
The output will also show the local dashboard URL, the dashboard will automatically refresh with API details and other useful tools for building your application.
240240

241-
Once the API is registered, you can test the API using any HTTP client, your browser, or the [local dashboard](/get-started/local-dashboard):
241+
Once the API is registered, you can test the API using any HTTP client, your browser, or the [local dashboard](/get-started/foundations/projects/local-development):
242242

243243
```bash
244244
curl http://localhost:4001/hello/John
@@ -447,4 +447,4 @@ nitric down
447447

448448
- Learn more about [APIs](/apis)
449449
- See other features in the [introduction](/#building-blocks)
450-
- Learn more about the [foundations](/foundations/projects) of Nitric
450+
- Learn more about the [foundations](/get-started/foundations/projects) of Nitric

docs/providers/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ It also significantly reduces the burden of writing project specific Infrastruct
4141

4242
![Nitric Architecture](/docs/images/guides/custom-provider/custom-provider-architecture.png)
4343

44-
You can find out more about how the Nitric CLI and SDK interact with providers on the [deployment](/foundations/deployment) section.
44+
You can find out more about how the Nitric CLI and SDK interact with providers on the [deployment](/get-started/foundations/deployment) section.
4545

4646
## Standard Providers
4747

docs/providers/pulumi/aws/imports.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Nitric allows you to import existing AWS resources into your Nitric project. Cur
88

99
## How imports work
1010

11-
If you have existing AWS resources that you would like to use in your Nitric project, you may be able to import them using the `import` section of your Nitric [stack file](/foundations/deployment/stacks). This section allows you to import existing resources and use them in your Nitric project. This indicates to the `nitric/aws` provider that you would like to use the existing resources in your Nitric project, rather than create a new one.
11+
If you have existing AWS resources that you would like to use in your Nitric project, you may be able to import them using the `import` section of your Nitric [stack file](/get-started/foundations/deployment/stacks). This section allows you to import existing resources and use them in your Nitric project. This indicates to the `nitric/aws` provider that you would like to use the existing resources in your Nitric project, rather than create a new one.
1212

1313
Imports are stack specific, meaning that you can import resources into a specific stack file, and they will only be available in that stack. Other stacks for the same project can either create or import those resources as needed.
1414

docs/reference/cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ When you are ready to test your application and you want to run it locally, you
103103
nitric start
104104
```
105105
106-
This will run the Nitric server for local testing. This will output local endpoints for your apis and open the [local dashboard](/get-started/local-dashboard) for testing.
106+
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
108108
For more information on local development, see the [local development](/reference/cli/local-development) docs.
109109

docs/reference/csharp/v0/collection/collection.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Nitric.Run();
3333

3434
## Access
3535

36-
All Nitric resources provide access permissions you can use to specify the level of access your code needs to the resource. See here for details about infrastructure [security](/foundations/infrastructure/security).
36+
All Nitric resources provide access permissions you can use to specify the level of access your code needs to the resource. See here for details about infrastructure [security](/get-started/foundations/infrastructure/security).
3737

3838
### Available permissions:
3939

docs/reference/csharp/v0/queues/queue.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Nitric.Run();
3131

3232
## Access
3333

34-
All Nitric resources provide access permissions you can use to specify the level of access your code needs to the resource. See here for details about infrastructure [security](/foundations/infrastructure/security).
34+
All Nitric resources provide access permissions you can use to specify the level of access your code needs to the resource. See here for details about infrastructure [security](/get-started/foundations/infrastructure/security).
3535

3636
### Available permissions:
3737

0 commit comments

Comments
 (0)