Skip to content

Commit 6c7dbdb

Browse files
committed
Clarifications
- Added section about how Claude was used - Added mermaid diagram showing CI/CD - Added links to the "Built With" sections - Added tests - Removed unused forms package - Slight tweak to sid nav items to highlight when hovered over
1 parent f52957a commit 6c7dbdb

8 files changed

Lines changed: 1411 additions & 86 deletions

File tree

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,31 @@ Claude Code as a hands-on example of how I leverage modern tools to ship softwar
1212

1313
**Production**
1414
- [Angular 21](https://angular.dev/)
15-
- [Angular Material 21](https://material.angular.io/)
16-
- TypeScript 5.9.3
15+
- [Angular Material 21](https://material.angular.dev/)
16+
- [TypeScript 5.9.3](https://www.typescriptlang.org/)
17+
- [Mermaid 11.13.0](https://mermaid.js.org/)
1718

1819
**Development**
19-
- Angular CLI 21.2.2
20+
- [Angular CLI 21.2.2](https://angular.dev/tools/cli)
2021
- [Vitest](https://vitest.dev/) (unit testing)
21-
- [Claude Code](https://claude.ai/) (AI-assisted development)
22+
- [Claude Code](https://claude.ai/code) (AI-assisted development)
2223

2324
## CI/CD
2425

2526
Merging a pull request into `main` automatically triggers the [GitHub action deployment workflow](.github/workflows/deploy.yml), which tests, builds, and deploys the application to AWS.
2627

2728
```mermaid
2829
flowchart LR
29-
PR[PR Merged to main] --> Test[npm run test]
30-
Test --> Build[npm run build]
31-
Build --> S3[Sync to S3 Bucket]
32-
S3 --> CF[Invalidate CloudFront Cache]
33-
CF --> Live[Live at iamgarlug.com]
30+
subgraph Manual
31+
Modify[Modify Code] --> PR[Merge PR to main]
32+
end
33+
subgraph Automatic
34+
Test[npm run test] --> Build[npm run build]
35+
Build --> S3[Sync to S3 Bucket]
36+
S3 --> CF[Invalidate CloudFront Cache]
37+
CF --> Live[Live at iamgarlug.com]
38+
end
39+
Manual --> Automatic
3440
```
3541

3642
## Environment Configuration (not committed)

0 commit comments

Comments
 (0)