-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
138 lines (123 loc) Β· 3.28 KB
/
_config.yml
File metadata and controls
138 lines (123 loc) Β· 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# GitHub Pages configuration for Data Engineering Journey
# Site settings
title: "Data Engineering Journey"
description: "Complete hands-on course: Traditional Data β Modern Engineering β AI-Driven Systems"
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://your-username.github.io" # the base hostname & protocol for your site
# Course information
course:
name: "Data Engineering Journey"
subtitle: "From Traditional to AI-Driven Systems"
version: "1.0.0"
phases: 3
duration: "12 weeks"
# Author information
author:
name: "Data Engineering Course"
email: "support@dataengineering.course"
github: "your-username"
# Social media
social:
github: "your-username/data-ai-course"
discussions: "https://github.com/your-username/data-ai-course/discussions"
# Build settings
markdown: kramdown
highlighter: rouge
theme: minima
# GitHub Pages settings
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
# Collections
collections:
phases:
output: true
permalink: /:collection/:name/
# Exclude files from processing
exclude:
- .devcontainer/
- scripts/
- data/
- node_modules/
- .gitignore
- package.json
- package-lock.json
- requirements.txt
- "*.py"
- "*.sh"
- Gemfile
- Gemfile.lock
- README.md
- LAUNCH_GUIDE.md
# Include specific files
include:
- phase1-traditional/
- phase2-modern/
- phase3-ai-driven/
- assets/
- _config.yml
# SEO settings
seo:
name: "Data Engineering Journey"
description: "Complete hands-on course for engineering graduates: Traditional Data β Modern Engineering β AI-Driven Systems using GitHub Codespaces, Azure, and AI tools."
keywords: "data engineering, machine learning, AI, vector database, knowledge graphs, MLOps, Azure, education, hands-on, interactive"
# Analytics (optional)
# google_analytics: "G-XXXXXXXXXX"
# Custom variables
course_features:
- "Interactive demonstrations"
- "GitHub Codespaces ready"
- "Azure integration"
- "AI-powered learning"
- "Hands-on projects"
- "Progressive complexity"
technologies:
phase1:
- "SQL"
- "Python"
- "Pandas"
- "Chart.js"
- "Power BI concepts"
phase2:
- "Azure"
- "Docker"
- "MLOps"
- "Streaming analytics"
- "Cloud architecture"
phase3:
- "Vector databases"
- "Neo4j"
- "OpenAI"
- "LangChain"
- "AI agents"
# Navigation
navigation:
- name: "Overview"
url: "#overview"
- name: "Phases"
url: "#phases"
- name: "Features"
url: "#features"
- name: "Launch"
url: "#launch"
# Course phases metadata
phase_metadata:
phase1:
title: "Traditional Data Engineering"
duration: "Weeks 1-4"
icon: "ποΈ"
description: "Master the fundamentals of data systems, SQL databases, and business intelligence"
path: "phase1-traditional/html-dashboard/index.html"
phase2:
title: "Modern Data Engineering"
duration: "Weeks 5-8"
icon: "βοΈ"
description: "Build cloud-native data architectures, MLOps pipelines, and real-time systems"
path: "phase2-modern/mlops-pipeline/index.html"
phase3:
title: "AI-Driven Data Systems"
duration: "Weeks 9-12"
icon: "π€"
description: "Create intelligent data systems with vector databases, knowledge graphs, and AI agents"
path: "phase3-ai-driven/vector-search/index.html"