-
Notifications
You must be signed in to change notification settings - Fork 53
Description
Context
This issue documents all locations in the codebase where github.com/liatrio/devops-bootcamp repository URLs appear. These references will need to be updated after the GitHub repository is renamed from liatrio/devops-bootcamp to liatrio/engineering-bootcamp.
Total References Found: 41 occurrences across 25 unique files
Files to Update by Category
1. Configuration Files (4 occurrences, 2 files)
package.json - Update repository metadata
- Line 21:
"url": "git+https://github.com/liatrio/devops-bootcamp.git" - Line 30:
"url": "https://github.com/liatrio/devops-bootcamp/issues" - Line 32:
"homepage": "https://github.com/liatrio/devops-bootcamp#readme"
index.html - Update Docsify edit configuration
- Line 56:
"https://github.com/liatrio/devops-bootcamp/tree/master/docs/"
2. Go Module Files (4 occurrences, 3 files)
examples/ch8/devops-api/go.mod
- Line 7: Module dependency declaration
examples/ch8/devops-api/go.sum
- Line 36-37: Module checksum entries (2 lines)
examples/ch8/devops-resources/go.mod
- Line 1: Module name declaration
3. Go Source Code Files (8 occurrences, 7 files)
Import statements in the following files need updating:
examples/ch8/devops-api/main_test.go(Line 7)examples/ch8/devops-api/main.go(Line 11)examples/ch8/devops-api/read.go(Line 8)examples/ch8/devops-api/update.go(Line 8)examples/ch8/devops-api/create.go(Line 8)examples/ch8/devops-api/delete.go(Line 8)examples/codeQuality/goExamples/example_test.go(Lines 11, 33) - Test data
4. Documentation - Kubernetes (Chapter 9) (4 occurrences, 4 files)
Exercise instructions referencing repository cloning:
docs/9-kubernetes-container-orchestration/9.5-hpas.md(Line 43)docs/9-kubernetes-container-orchestration/9.8-controllers.md(Line 76)docs/9-kubernetes-container-orchestration/9.6-webhooks.md(Line 61)docs/9-kubernetes-container-orchestration/9.2-volumes.md(Line 40)
5. Documentation - Infrastructure (Chapter 8) (3 occurrences, 1 file)
docs/8-infrastructure-configuration-management/8.3-terraform-providers.md
- Line 121: Link to API README
- Line 142: Links to Makefile and helper script (2 links)
6. Documentation - Other Chapters (7 occurrences, 3 files)
docs/5-cloud-computing/5.2.6-ecs.md (1 occurrence)
- Line 43: Link to ECS task definition example
docs/7-release-management/7.2.2-maven-integration.md (1 occurrence)
- Line 42: Link to dev container examples
docs/6-software-development-practices/6.5.1-unit-testing.md (2 occurrences)
- Lines 90, 117: Example code snippets
docs/11-application-development/11.2.1-solid-principles.md (3 occurrences)
- Lines 835, 845, 855: Links to SOLID principle exercises
7. Example README Files (2 occurrences, 1 file)
examples/ch8/devops-resources/README.md
- Lines 10, 20: Import and require statement examples
8. GitHub Prompts (1 occurrence, 1 file)
.github/prompts/new-section.prompt.md
- Line 77: Template instructions for cloning repository
9. Specification Files (5 occurrences, 4 files)
These reference the rename task itself and can be updated as part of the rename:
docs/specs/01-spec-design-patterns-section/task-1.0-github-issue.md(Line 200)docs/specs/99-spec-bootcamp-rename/99-tasks-bootcamp-rename.md(Lines 103, 113, 120)docs/specs/99-spec-bootcamp-rename/99-questions-1-bootcamp-rename.md(Line 19)docs/specs/99-spec-bootcamp-rename/99-spec-bootcamp-rename.md(Lines 72, 75)
Action Items
After the GitHub repository is renamed to liatrio/engineering-bootcamp:
-
Configuration Updates
- Update package.json repository URLs (3 locations)
- Update index.html Docsify configuration (1 location)
-
Go Code Updates
- Update Go module files (go.mod, go.sum) in examples/ch8
- Update import statements in 7 Go source files
- Run
go mod tidyto regenerate checksums
-
Documentation Updates
- Update clone instructions in 4 Kubernetes chapter files
- Update example links in infrastructure chapter (3 locations)
- Update links in cloud computing, release management, and software development chapters (4 locations)
- Update SOLID principles exercise links (3 locations)
-
Example and Template Updates
- Update README in examples/ch8/devops-resources (2 locations)
- Update .github/prompts/new-section.prompt.md template (1 location)
-
Specification Updates
- Update spec files to reflect completed rename (5 locations)
-
Verification
- Run
grep -r "github.com/liatrio/devops-bootcamp" . --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=specsto confirm all updates - Test Go code builds successfully after module updates
- Verify documentation links resolve correctly
- Run
Notes
- This issue was automatically generated as part of the bootcamp rename from "DevOps Bootcamp" to "Engineering Bootcamp"
- The display name changes have been completed in a separate task
- Once the GitHub repository rename is complete, work through the action items above to update all URL references
- The Go module updates are particularly important as they affect code compilation