Commit ae9b87e
authored
fix: correct domain name after change (#809)
<!--
Thank you for your pull request. Please review the requirements below.
Bug fixes and new features should be reported on the issue tracker:
https://github.com/lif-initiative/lif-core/issues
Contributing guide:
https://github.com/lif-initiative/lif-core/blob/main/docs/CONTRIBUTING.md
Code of Conduct:
https://github.com/lif-initiative/lif-core/blob/main/CODE_OF_CONDUCT.md
-->
##### Checklist
<!-- Remove items that do not apply. For completed items, change [ ] to
[x]. -->
- [x] commit message follows commit guidelines (see
commitlint.config.mjs)
- [ ] tests are included (unit and/or integration tests)
- [ ] all tests are successful
- [x] documentation is changed or added (in /docs directory)
- [ ] code passes linting checks (`uv run ruff check`)
- [ ] code passes formatting checks (`uv run ruff format`)
- [ ] code passes type checking (`uv run ty check`)
- [ ] pre-commit hooks have been run successfully
- [ ] database schema changes: migration files created and CHANGELOG.md
updated
- [ ] API changes: base (Python code) documentation in `docs/`
and project README updated
- [x] configuration changes: relevant folder README updated
- [ ] breaking changes: added to MIGRATION.md with upgrade instructions
and CHANGELOG.md entry
##### Type of Change
<!-- Check all that apply -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality
to not work as expected)
- [x] Documentation update
- [x] Infrastructure/deployment change
- [ ] Performance improvement
- [ ] Code refactoring
##### Description of Change
<!-- Provide a clear and detailed description of the change below this
comment.
Include:
- What problem does this solve?
- What is the solution?
- Are there any side effects or limitations?
- How should reviewers test this?
-->
The domain names for dev services were changed to add ".dev" in to make
clear the services are part of dev rather than demo environment. Some
URLs were not updated. This PR resolves those.
##### Related Issues
<!-- Link to related issues using #issue_number -->
Closes # [[add Github issue number]]
Resolves #802
##### Testing
<!-- Describe the testing you've done -->
- [ ] Manual testing performed
- [ ] Automated tests added/updated
- [ ] Integration testing completed
##### Project Area(s) Affected
<!-- Check all project areas affected by this change -->
- [ ] bases/
- [ ] components/
- [ ] orchestrators/
- [ ] frontends/
- [ ] deployments/
- [x] CloudFormation/SAM templates
- [ ] Database schema
- [ ] API endpoints
- [x] Documentation
- [ ] Testing
##### Additional Notes
<!-- Any additional information that reviewers should know -->
These changes only affect deployment to AWS, so testing is limited
before merging.3 files changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | | - | |
| 49 | + | |
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
66 | | - | |
| 65 | + | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments