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

chore: change to aem.live #1264

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ Please always provide the [GitHub issue(s)](../issues) your PR is for, as well a
Fix #<gh-issue-id>

Test URLs:
- Before: https://main--danaher-ls-aem--hlxsites.hlx.page/
- After: https://<branch>--danaher-ls-aem--hlxsites.hlx.page/
- Before: https://main--danaher-ls-aem--hlxsites.aem.page/
- After: https://<branch>--danaher-ls-aem--hlxsites.aem.page/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Live Website: https://lifesciences.danaher.com/

## Environments
- Preview: https://main--danaher-ls-aem--hlxsites.hlx.page/
- Live: https://main--danaher-ls-aem--hlxsites.hlx.live/
- Preview: https://main--danaher-ls-aem--hlxsites.aem.page/
- Live: https://main--danaher-ls-aem--hlxsites.aem.live/
- Public: https://stage.lifesciences.danaher.com/

## Installation
Expand Down
2 changes: 1 addition & 1 deletion converter.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# the origin to fetch content from
origin: https://author-p93411-e849602.adobeaemcloud.com
suffix: ".html?wcmmode=disabled"
internalHost: https://main--danaher-ls-aem--hlxsites.hlx.live
internalHost: https://main--danaher-ls-aem--hlxsites.aem.live
# the live urls of the content
# this is used to make absolute links to the urls domain reliatve
# it may be an array, if there are mutliple urls possible like
Expand Down
2 changes: 1 addition & 1 deletion scripts/sidekick.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
async function getContentSourceUrl(owner, repo, ref) {
const res = await fetch(`https://admin.hlx.page/sidekick/${owner}/${repo}/${ref}/env.json`);
const res = await fetch(`https://admin.aem.page/sidekick/${owner}/${repo}/${ref}/env.json`);
if (!res || !res.ok) {
return null;
}
Expand Down
2 changes: 1 addition & 1 deletion tools/actions/convert/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ async function rewriteLinksAndImages(state) {
}

function mapPathToFranklinDeliveryServlet(host, path) {
// host: https://ref--repo--owner.hlx.live
// host: https://ref--repo--owner.aem.live
// mapped path: /bin/franklin.delivery/owner/repo/ref/path
const [ref, repo, owner] = host.split('://')[1].split('.')[0].split('--');
return `/bin/franklin.delivery/${owner}/${repo}/${ref}${path}`;
Expand Down
Loading