Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial-module-development.html
More file actions
Latest commit
151 lines (141 loc) · 7.84 KB
/
Copy pathtutorial-module-development.html
File metadata and controls
151 lines (141 loc) · 7.84 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
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<htmllang="en" class="scroll-smooth">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<title>Forge Kernel - Module Development</title>
<scriptsrc="https://cdn.tailwindcss.com"></script>
<scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-core.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/autoloader/prism-autoloader.min.js"></script>
<linkhref="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet">
<linkhref="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<linkrel="stylesheet" href="assets/css/docs.css">
</head>
<bodyclass="bg-gray-50 text-gray-900">
<!-- Navigation -->
<navclass="bg-white shadow-sm border-b">
<divclass="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<divclass="flex justify-between h-16">
<divclass="flex items-center">
<divclass="flex-shrink-0">
<h1class="text-xl font-bold text-gray-900">
Forge Kernel
</h1>
</div>
<divclass="hidden sm:ml-6 sm:flex sm:space-x-8">
<ahref="index.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Home
</a>
<ahref="getting-started.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Getting Started
</a>
<ahref="core-concepts.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Core Concepts
</a>
<ahref="capabilities.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
Capabilities
</a>
<ahref="api-reference.html"
class="text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium hover:text-blue-600">
API Reference
</a>
<ahref="tutorial.html"
class="text-blue-600 inline-flex items-center px-1 pt-1 text-sm font-medium border-b-2 border-blue-600">
Tutorials
</a>
</div>
</div>
<!-- Mobile menu button -->
<divclass="flex items-center sm:hidden">
<buttonid="mobile-menu-button" class="text-gray-700 hover:text-blue-600 p-2">
<iclass="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<divid="mobile-menu" class="sm:hidden hidden bg-white border-t border-gray-200">
<divclass="px-2 pt-2 pb-3 space-y-1">
<ahref="index.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Home</a>
<ahref="getting-started.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Getting Started</a>
<ahref="core-concepts.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Core Concepts</a>
<ahref="capabilities.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">Capabilities</a>
<ahref="api-reference.html" class="block px-3 py-2 text-gray-900 hover:text-blue-600">API Reference</a>
<ahref="tutorial.html" class="block px-3 py-2 text-blue-600 font-medium">Tutorials</a>
</div>
</div>
</nav>
<!-- Main Content -->
<divclass="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<!-- Breadcrumb Navigation -->
<navclass="mb-6" aria-label="Breadcrumb">
<olclass="flex items-center space-x-2 text-sm text-gray-500">
<li><ahref="index.html" class="hover:text-blue-600">Home</a></li>
<li><iclass="fas fa-chevron-right text-xs"></i></li>
<li><ahref="tutorial.html" class="hover:text-blue-600">Tutorials</a></li>
<li><iclass="fas fa-chevron-right text-xs"></i></li>
<liclass="text-gray-900 font-medium">Module Development</li>
</ol>
</nav>
<divclass="flex flex-col lg:flex-row gap-8">
<!-- Sidebar Navigation -->
<divid="sidebar-nav" class="lg:w-1/4">
<divclass="bg-white rounded-lg shadow-sm p-6 sticky top-8 max-h-[calc(100vh-4rem)] overflow-y-auto">
<h3class="text-lg font-semibold text-gray-900 mb-4">Tutorial</h3>
<navclass="space-y-2">
<ahref="#introduction" class="nav-link block px-3 py-2 text-sm text-gray-700 rounded-md hover:text-blue-600">Introduction</a>
</nav>
</div>
</div>
<!-- Main Content -->
<divclass="lg:w-3/4">
<divclass="bg-white rounded-lg shadow-sm p-8">
<divclass="flex items-center mb-4">
<spanclass="bg-yellow-100 text-yellow-800 text-sm font-semibold px-3 py-1 rounded-full mr-3">Intermediate</span>
<spanclass="text-sm text-gray-500"><iclass="far fa-clock mr-1"></i> 1-2 hours</span>
</div>
<h1class="text-4xl font-bold text-gray-900 mb-4">Module Development</h1>
<pclass="text-xl text-gray-600 mb-8">
Learn how to create your own Forge Kernel modules from scratch, including module structure, attributes, and integration.
</p>
<!-- Coming Soon -->
<sectionid="introduction" class="section-anchor mb-12">
<divclass="bg-yellow-50 border-l-4 border-yellow-400 p-6 rounded">
<divclass="flex items-center mb-4">
<iclass="fas fa-info-circle text-yellow-600 text-2xl mr-3"></i>
<h2class="text-2xl font-bold text-gray-900">Coming Soon</h2>
</div>
<pclass="text-gray-700 mb-4">
This tutorial is currently under development. It will cover:
</p>
<ulclass="list-disc list-inside space-y-2 text-gray-700 mb-4">
<li>Module structure and organization</li>
<li>Module attributes and metadata</li>
<li>Service registration</li>
<li>CLI commands in modules</li>
<li>Module lifecycle hooks</li>
<li>Module testing</li>
</ul>
<pclass="text-gray-700">
Check back soon for the complete tutorial!
</p>
</div>
</section>
</div>
</div>
</div>
</div>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button')?.addEventListener('click',function(){
constmenu=document.getElementById('mobile-menu');
menu?.classList.toggle('hidden');
});
</script>
</body>
</html>