Skip to content

Commit 1ae271f

Browse files
authored
update documentation URLs to reflect EoL of onica.com (#2484)
1 parent 6add741 commit 1ae271f

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
To view our [Getting Started] guide for developers and [Contribution Requirements], please refer to the official [documentation].
44

5-
[contribution requirements]: https://docs.onica.com/projects/runway/page/developers/contributing.html
6-
[documentation]: https://docs.onica.com/projects/runway
7-
[getting started]: https://docs.onica.com/projects/runway/page/developers/getting_started.html
5+
[contribution requirements]: https://runway.readthedocs.io/page/developers/contributing.html
6+
[documentation]: https://runway.readthedocs.io
7+
[getting started]: https://runway.readthedocs.io/page/developers/getting_started.html

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
<!-- You can erase any parts of this template not applicable to your Pull Request. -->
4040

41-
- [ ] Have you followed the guidelines in our [Contribution Requirements](https://docs.onica.com/projects/runway/page/developers/contributing.html)?
41+
- [ ] Have you followed the guidelines in our [Contribution Requirements](https://runway.readthedocs.io/page/developers/contributing.html)?
4242
- [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change?
4343
- [ ] Does your submission pass tests?
4444
- [ ] Have you linted your code locally prior to submission?

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@ $ poetry run runway new
9494

9595
## Documentation
9696

97-
See the [doc site](https://docs.onica.com/projects/runway) for full documentation.
97+
See the [doc site](https://runway.readthedocs.io) for full documentation.
9898

99-
Quickstart documentation, including CloudFormation templates and walkthrough can be found [here](https://docs.onica.com/projects/runway/page/quickstart/index.html)
99+
Quickstart documentation, including CloudFormation templates and walkthrough can be found [here](https://runway.readthedocs.io/page/quickstart/index.html)

docs/source/getting_started.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Deploying Your First Module
134134
:caption: runway.yml
135135
136136
---
137-
# See full syntax at https://docs.onica.com/projects/runway
137+
# See full syntax at https://runway.readthedocs.io
138138
deployments:
139139
- modules:
140140
- nameofmyfirstmodulefolder
@@ -155,7 +155,7 @@ Deploying Your First Module
155155
:caption: runway.yml
156156
157157
---
158-
# See full syntax at https://docs.onica.com/projects/runway
158+
# See full syntax at https://runway.readthedocs.io
159159
deployments:
160160
- modules:
161161
- sampleapp.cfn

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
"Topic :: Utilities",
1717
]
1818
description = "Simplify infrastructure/app testing/deployment"
19-
documentation = "https://docs.onica.com/projects/runway"
19+
documentation = "https://runway.readthedocs.io"
2020
homepage = "https://github.com/onicagroup/runway"
2121
keywords = ["cli"]
2222
license = "Apache-2.0"

runway/_cli/commands/_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
LOGGER = cast("RunwayLogger", logging.getLogger(__name__.replace("._", ".")))
1717

18-
DOCS_URL = "https://docs.onica.com/projects/runway/"
18+
DOCS_URL = "https://runway.readthedocs.io/"
1919

2020

2121
@click.command("docs", short_help="open doc site")

runway/_cli/commands/_new.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
LOGGER = cast("RunwayLogger", logging.getLogger(__name__.replace("._", ".")))
1717
RUNWAY_YML = """---
18-
# See full syntax at https://docs.onica.com/projects/runway
18+
# See full syntax at https://runway.readthedocs.io
1919
deployments:
2020
- modules:
2121
- path: sampleapp.cfn
@@ -44,5 +44,5 @@ def new(ctx: click.Context, **_: Any) -> None:
4444
LOGGER.success("runway.yml generated")
4545
LOGGER.notice(
4646
"See addition getting started information at "
47-
"https://docs.onica.com/projects/runway/page/getting_started.html"
47+
"https://runway.readthedocs.io/page/getting_started.html"
4848
)

runway/_cli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __parse_global_options(ctx: click.Context) -> dict[str, Any]:
6565
def cli(ctx: click.Context, **_: Any) -> None:
6666
"""Runway CLI.
6767
68-
Full documentation available at https://docs.onica.com/projects/runway/
68+
Full documentation available at https://runway.readthedocs.io/
6969
7070
"""
7171
opts = ctx.meta["global.options"]

runway/cfngin/blueprints/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def __init__(
343343
"deprecated PARAMETERS or "
344344
"LOCAL_PARAMETERS, rather than VARIABLES. "
345345
"Please update your blueprints. See "
346-
"https://docs.onica.com/projects/runway/page/cfngin/blueprints.html#variables "
346+
"https://runway.readthedocs.io/page/cfngin/blueprints.html#variables "
347347
"for additional information."
348348
)
349349

runway/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from ..compat import Self
3838

3939
AWS_ENV_VARS = ("AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN")
40-
DOC_SITE = "https://docs.onica.com/projects/runway"
40+
DOC_SITE = "https://runway.readthedocs.io"
4141
EMBEDDED_LIB_PATH = str(Path(__file__).resolve().parent / "embedded")
4242

4343
LOGGER = logging.getLogger(__name__)

0 commit comments

Comments
 (0)