Skip to content

Commit

Permalink
Resolve #1163 update doc link to new domain (#1166)
Browse files Browse the repository at this point in the history
Updating links in docs and elsewhere to new domain
  • Loading branch information
zainulabidin302 committed Nov 27, 2021
1 parent ec110e9 commit 70362c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ building better infrastructure.
`$ pip install sceptre`

More information on installing sceptre can be found in our
[Installation Guide](https://sceptre.cloudreach.com/latest/docs/install.html)
[Installation Guide](https://docs.sceptre-project.org/latest/docs/install.html)

### Using Docker Image

Expand Down Expand Up @@ -257,12 +257,12 @@ plan.launch()
```

Full API reference documentation can be found in the
[Documentation](https://sceptre.cloudreach.com/)
[Documentation](https://docs.sceptre-project.org/)

## Tutorial and Documentation

- [Get Started](https://sceptre.cloudreach.com/latest/docs/get_started.html)
- [Documentation](https://sceptre.cloudreach.com/)
- [Get Started](https://docs.sceptre-project.org/latest/docs/get_started.html)
- [Documentation](https://docs.sceptre-project.org/)

## Communication

Expand Down
2 changes: 1 addition & 1 deletion docs/_source/_templates/versions.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<dl>
{% set links = {
'Cloudreach':'https://www.cloudreach.com',
'Sceptre Home': 'https://www.sceptre.cloudreach.com'
'Sceptre Home': 'https://docs.sceptre-project.org'
} %}
<dt>Other Links</dt>
{% for title, url in links.items() %}
Expand Down
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def test_validate_template_with_invalid_template(self):

def test_estimate_template_cost_with_browser(self):
self.mock_stack_actions.estimate_cost.return_value = {
"Url": "https://sceptre.cloudreach.com",
"Url": "https://docs.sceptre-project.org",
"ResponseMetadata": {
"HTTPStatusCode": 200
}
Expand All @@ -355,7 +355,7 @@ def test_estimate_template_cost_with_browser(self):

assert result.output == \
'{0}{1}'.format("View the estimated cost for mock-stack at:\n",
"https://sceptre.cloudreach.com\n\n")
"https://docs.sceptre-project.org\n\n")

def test_estimate_template_cost_with_no_browser(self):
client_error = ClientError(
Expand Down

0 comments on commit 70362c4

Please sign in to comment.