Skip to content

Commit

Permalink
docs: remove absolute markdown urls (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardtreier authored Sep 8, 2023
1 parent 0a5886d commit 2e27c70
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 35 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Feel free to edit this release checklist in-progress depending on what tasks nee
- [ ] Decide a release version depending on major/minor/patch changes in the CHANGELOG.md.
- [ ] Update this issue's title to the new version
- [ ] `release-prep` PR:
- [ ] Write or review the current [Productive Deployment Guide](/docs/deployment-guide/goals/production)
- [ ] Write or review the current [Development Deployment Guide](/docs/deployment-guide/goals/development)
- [ ] Write or review the current [Local Demo Deployment Guide](/docs/deployment-guide/goals/local-demo)
- [ ] Write or review the current [Productive Deployment Guide](https://github.com/sovity/edc-extensions/blob/main/docs/deployment-guide/goals/production)
- [ ] Write or review the current [Development Deployment Guide](https://github.com/sovity/edc-extensions/blob/main/docs/deployment-guide/goals/development)
- [ ] Write or review the current [Local Demo Deployment Guide](https://github.com/sovity/edc-extensions/blob/main/docs/deployment-guide/goals/local-demo)
- [ ] Update the CHANGELOG.md.
- [ ] Add a clean `Unreleased` version.
- [ ] Add the version to the old section.
Expand Down
7 changes: 0 additions & 7 deletions .github/markdown-link-checker-config.jq → .github/markdown-link-checker-config.json
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env -S jq -nf
{
"ignorePatterns": [
{"pattern": "^https?://localhost"},
Expand All @@ -7,11 +6,5 @@
{"pattern": "^https://www\\.linkedin\\.com"},
{"pattern": "https://(.*?)\\.azure\\.sovity\\.io"},
{"pattern": "http://edc2?:"}
],
"replacementPatterns": [
{
"pattern": "^/",
"replacement": "https://github.com/sovity/edc-extensions/blob/\(env | .CI_SHA // ("CI_SHA was null" | halt_error))/"
}
]
}
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: FranzDiebold/github-env-vars-action@v2
- name: "Markdown Link Checker: Generate Config"
run: .github/markdown-link-checker-config.jq > .github/markdown-link-checks-config.json
- name: "Markdown Link Checker: Validate Links"
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: '.github/markdown-link-checks-config.json'
config-file: '.github/markdown-link-checker-config.json'
26 changes: 13 additions & 13 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@

## Extensions

* [API Wrapper](/extensions/wrapper/README.md)
* [API Commons Endpoint](/extensions/wrapper/wrapper-common-api/README.md)
* [API EE Endpoint](/extensions/wrapper/wrapper-ee-api/README.md)
* [Java Implementation](/extensions/wrapper/client/README.md)
* [Java Example](/extensions/wrapper/client-example/README.md)
* [TypeScript Implementation](/extensions/wrapper/client-ts/README.md)
* [TypeScript Example](/extensions/wrapper/client-ts-example/README.md)
* [API Wrapper](./extensions/wrapper/README.md)
* [API Commons Endpoint](./extensions/wrapper/wrapper-common-api/README.md)
* [API EE Endpoint](./extensions/wrapper/wrapper-ee-api/README.md)
* [Java Implementation](./extensions/wrapper/client/README.md)
* [Java Example](./extensions/wrapper/client-example/README.md)
* [TypeScript Implementation](./extensions/wrapper/client-ts/README.md)
* [TypeScript Example](./extensions/wrapper/client-ts-example/README.md)
* [Policies]()
* [Always True](/extensions/policy-always-true/README.md)
* [Referring Connector](/extensions/policy-referring-connector/README.md)
* [Time Interval](/extensions/policy-time-interval/README.md)
* [Database Migration](/extensions/postgres-flyway/README.md)
* [EDC UI Config](/extensions/edc-ui-config/README.md)
* [Last Commit Info](/extensions/last-commit-info/README.md)
* [Always True](./extensions/policy-always-true/README.md)
* [Referring Connector](./extensions/policy-referring-connector/README.md)
* [Time Interval](./extensions/policy-time-interval/README.md)
* [Database Migration](./extensions/postgres-flyway/README.md)
* [EDC UI Config](./extensions/edc-ui-config/README.md)
* [Last Commit Info](./extensions/last-commit-info/README.md)
16 changes: 8 additions & 8 deletions docs/deployment-guide/goals/production/4.2.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ to technical reasons, reachability via the internet and well-defined URLs across

To deploy an EDC multiple deployment units must be deployed and configured.

| Deployment Unit | Version / Details |
|----------------------------------------------------------------|----------------------------------------------------------------------------------|
| An Auth Proxy / Auth solution of your choice. | (deployment specific, required to secure UI and management API) |
| Reverse Proxy that merges the UI+Backend and removes the ports | (deployment specific) |
| Postgresql | 13 or compatible version |
| EDC Backend | edc-ce or edc-ce-mds, see [CHANGELOG.md](/CHANGELOG.md) for compatible versions. |
| EDC UI | edc-ui, see [CHANGELOG.md](/CHANGELOG.md) for compatible versions. |
| Deployment Unit | Version / Details |
|----------------------------------------------------------------|------------------------------------------------------------------------------------------------|
| An Auth Proxy / Auth solution of your choice. | (deployment specific, required to secure UI and management API) |
| Reverse Proxy that merges the UI+Backend and removes the ports | (deployment specific) |
| Postgresql | 13 or compatible version |
| EDC Backend | edc-ce or edc-ce-mds, see [CHANGELOG.md](../../../../../CHANGELOG.md) for compatible versions. |
| EDC UI | edc-ui, see [CHANGELOG.md](../../../../../CHANGELOG.md) for compatible versions. |

## Configuration

Expand Down Expand Up @@ -88,7 +88,7 @@ A sovity EDC CE or MDS EDC CE Backend deployment requires:
- The following configuration properties
> [!WARNING]
> Please be careful with overriding any of the ENV Vars set in our [launchers/.env](/launchers/.env). Our defaults
> Please be careful with overriding any of the ENV Vars set in our [launchers/.env](../../../../../launchers/.env). Our defaults
> will respect overrides, and the Core EDC ENV Vars can be in some cases sensitive to edge cases such as trailing
> slashes.
Expand Down

0 comments on commit 2e27c70

Please sign in to comment.