Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix broken links #2286

Merged
merged 2 commits into from
Apr 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/layouts/shortcodes/guides/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Next, you need a couple tools to interact with your Platform.sh project, one of
Git is the primary tool you use to manage everything your app needs to run.
Every commit pushed results in a new deployment, and all of your configuration is driven almost entirely by a small number of YAML files in your Git repository (which we will get to in the steps below).
Your infrastructure, described in these files, becomes part of your application itself - completely transparent and version-controlled.
If you do not already have Git on your computer, you should [install it now](https://help.github.com/articles/set-up-git/).
If you do not already have Git on your computer, you should [install it now](https://docs.github.com/en/get-started/quickstart/set-up-git).

* The [Platform.sh CLI](/development/cli/_index.md).
This lets you interact with your Platform.sh project from the command line.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/development/private-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ Since this account isn't used by a human, it's called a machine user.
You can then add the machine account as collaborator
or add the machine user to a team with access to the repositories it needs to manipulate.

More information about this is available on [GitHub](https://developer.github.com/v3/guides/managing-deploy-keys/#machine-users).
More information about this is available on [GitHub](https://docs.github.com/en/developers/overview/managing-deploy-keys#machine-users).
2 changes: 1 addition & 1 deletion docs/src/development/ssh/ssh-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ generate a key and have it added to your Platform.sh account automatically.
ssh-add 'PATH_TO_YOUR_KEY'
```

To generate a key otherwise, GitHub has a good [walk-through for creating SSH key pairs](https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/) on various operating systems.
To generate a key otherwise, GitHub has a good [walk-through for creating SSH key pairs](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) on various operating systems.

Then you need to [add it to your Platform.sh account](#2-add-an-ssh-key-to-your-platform-account).

Expand Down
4 changes: 2 additions & 2 deletions docs/src/development/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Any change you make to your Platform.sh project will need to be committed via Gi
Before getting started, make sure you have it installed on your computer to be able to interact with Platform.sh.

{{< note title="See also">}}
* [Install Git](https://help.github.com/articles/set-up-git/)
* [Install Git](https://docs.github.com/en/get-started/quickstart/set-up-git)
* [Learn more about Git](https://git-scm.com/)
{{< /note >}}

## SSH

Secure Shell (SSH) is a secure, encrypted connection between your computer and the Platform.sh environment. That includes connecting to your Git repository. SSH offers two secure types of authentication, based on keys or certificates. We support both.

Certificates are used automatically when you use the [Platform.sh CLI](/development/cli/_index.md) and run almost any command. You may force a login using `platform login -f` on the command line, provided you have a web browser available.
Certificates are used automatically when you use the [Platform.sh CLI](./cli/_index.md) and run almost any command. You may force a login using `platform login -f` on the command line, provided you have a web browser available.

To use key pairs, see the [SSH keys](./ssh/ssh-keys.md).
6 changes: 3 additions & 3 deletions docs/src/guides/drupal9/deploy/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ description: |
{{% guides/config-service name=Drupal %}}

We recommend the latest [MariaDB](/configuration/services/mysql/_index.md) version for Drupal,
although you can also use Oracle MySQL or [PostgreSQL](/configuration/services/postgresql.md) if you prefer.
We also strongly recommend using [Redis](/configuration/services/redis.md) for Drupal caching.
although you can also use Oracle MySQL or [PostgreSQL](/configuration/services/postgresql.md).
For Drupal caching, we strongly recommend using [Redis](/configuration/services/redis.md).
Drupal's cache can be very aggressive,
and keeping that data out of the database helps with both performance and disk usage.
Our Drupal template comes [pre-configured to use Redis](https://github.com/platformsh-templates/drupal9#user-content-customizations) for caching.
See an example of Redis for caching in our [Drupal template](https://github.com/platformsh-templates/drupal9).

{{% /guides/config-service %}}

Expand Down
2 changes: 1 addition & 1 deletion docs/src/integrations/activity/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |

{{< description >}}

Check out examples from other users on the Platform.sh [Community site.](https://community.platform.sh/c/activity-scripts)
Check out examples from other users on the Platform.sh [Community site](https://community.platform.sh/c/activity-scripts/10).

## Installing

Expand Down
2 changes: 1 addition & 1 deletion docs/src/integrations/source/github.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Optional parameters:
* `--fetch-branches`: Track and deploy branches (true by default)
* `--prune-branches`: Delete branches that do not exist in the remote GitHub repository (true by default)
* `--build-pull-requests`: Track and deploy pull-requests (true by default)
* `--build-draft-pull-requests`: If set to `true`, [draft pull requests](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request) will also have an environment created.
* `--build-draft-pull-requests`: If set to `true`, [draft pull requests](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request) will also have an environment created.
If false they will be ignored.
If `--build-pull-requests` is `false` this value is ignored. (`true` by default)
* `--build-pull-requests-post-merge`: `false` to have Platform.sh build the branch specified in a PR.
Expand Down
Loading