Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/markdown-link-check-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"ignorePatterns": [
{
"pattern": "^https://analytics.episkopos.community"
},
{
"pattern": "^https://dev.episkopos.community"
},
{
"pattern": "^http://api-server"
}
],
"timeout": "20s",
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/check-external-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ jobs:
--timeout 30000 \
--retry \
--concurrency 5 \
--skip 'analytics.episkopos.community' \
--skip 'analytics.episkopos.community|dev.episkopos.community' \
--format json > linkinator-report.json || true

# Parse results for summary
# Parse results — only count external broken links (skip internal
# relative paths that fail because linkinator can't resolve
# extensionless Docusaurus URLs from the filesystem; Docusaurus
# validates internal links at build time)
if [ -f linkinator-report.json ]; then
BROKEN=$(jq '[.links[] | select(.status >= 400 or .status == 0)] | length' linkinator-report.json)
BROKEN=$(jq '[.links[] | select((.status >= 400 or .status == 0) and (.url | startswith("http")))] | length' linkinator-report.json)
TOTAL=$(jq '.links | length' linkinator-report.json)
echo "broken_count=$BROKEN" >> $GITHUB_OUTPUT
echo "total_count=$TOTAL" >> $GITHUB_OUTPUT
Expand All @@ -58,7 +61,7 @@ jobs:
echo "" >> $GITHUB_STEP_SUMMARY

if [ -f linkinator-report.json ]; then
BROKEN=$(jq '[.links[] | select(.status >= 400 or .status == 0)]' linkinator-report.json)
BROKEN=$(jq '[.links[] | select((.status >= 400 or .status == 0) and (.url | startswith("http")))]' linkinator-report.json)
BROKEN_COUNT=$(echo "$BROKEN" | jq 'length')

if [ "$BROKEN_COUNT" -gt 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-readme-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
use-verbose-mode: 'yes'
config-file: '.github/markdown-link-check-config.json'
folder-path: 'docs,prompts,curriculum'
file-path: './README.md,./CONTRIBUTING.md'
file-path: './README.md'
10 changes: 10 additions & 0 deletions curriculum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,14 @@ A structured learning path for AI-assisted software development.

---

## Part V: Infrastructure & Operations

| Module | Topic | Status |
|--------|-------|--------|
| 19 | [Containerization & Orchestration](https://dev.episkopos.community/docs/curriculum/part-5-infrastructure/containerization-and-orchestration) | ✓ |
| 20 | Observability & Reliability | Planned |
| 21 | Infrastructure as Code | Planned |

---

*See the [full documentation](https://dev.episkopos.community/docs/curriculum) for complete module content, exercises, and examples.*
4 changes: 4 additions & 0 deletions curriculum/part-3-building-applications/15-deployed-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ A production-deployed chat app with:

4 exercises covering deployment setup, environment configuration, CI/CD pipelines, and health monitoring.

## What's Next

Want more control over your deployment? [Module 19: Containerization & Orchestration](../part-5-infrastructure-and-operations/19-containerization-and-orchestration.md) covers Docker and Kubernetes — the same tools used by teams at every scale.

---

*See the full module for step-by-step deployment guides.*
Loading