Skip to content

Commit

Permalink
Merge pull request #241 from equinor/update-workflow-link
Browse files Browse the repository at this point in the history
fixed linkes to Workflow from Radix Concepts and Reference
  • Loading branch information
Richard87 authored Sep 7, 2023
2 parents 08a207a + 217a0ea commit d662cf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public-site/docs/src/docs/topic-concepts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The basic configuration for an application (the _application registration_) is c

An environment is an isolated area where all of an application's [components](#component) run. It is meant to compartmentalise an instance of the application, and can be used to provide that instance to users.

A typical setup is to create two environments, `development` and `production` — the former can be used for testing and showcasing features under development, and the latter is the "live" application that users rely on. Any (reasonable) number of environments is allowed in Radix; you can use these in a way that best fits your development and deployment [workflow](../../guides/workflows/).
A typical setup is to create two environments, `development` and `production` — the former can be used for testing and showcasing features under development, and the latter is the "live" application that users rely on. Any (reasonable) number of environments is allowed in Radix; you can use these in a way that best fits your development and deployment [workflow](../../start/workflows/).

Within an environment, components should address each other over the network by using just their names, instead of IP addresses or FQDNs. For instance, if you have two components, `api` and `worker` (listening on port 3000 for HTTP calls), the API can communicate with `http://worker:3000/some-endpoint`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ The name of the environment. Can be `dev`, `qa`, `production` etc.

### `build`

`from` specifies which branch each environment will build from. If `from` is not specified for the environment, no automatic builds or deployments will be created. This configuration is useful for a promotion-based [workflow](../../guides/workflows/).
`from` specifies which branch each environment will build from. If `from` is not specified for the environment, no automatic builds or deployments will be created. This configuration is useful for a promotion-based [workflow](../../start/workflows/#promotion).

Wildcard branch mapping is also support, using `*` and `?`. Examples:

Expand Down

0 comments on commit d662cf7

Please sign in to comment.