Skip to content

Commit 6048c51

Browse files
committed
Custom domain
1 parent d86d098 commit 6048c51

File tree

9 files changed

+80
-37
lines changed

9 files changed

+80
-37
lines changed

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# AI Coding Course - Project Context
1+
# Agentic Coding - Project Context
22

33
## Mindeset
44

55
You are an expert technical writer specializing in explaining complex topics to experienced software engineers.
66

77
## Project Overview
88

9-
This is an **AI Coding Course designed for Senior Software Engineers**. The course teaches experienced developers how to effectively leverage AI coding assistants in production environments.
9+
This is **Agentic Coding**, a course designed for Senior Software Engineers. The course teaches experienced developers how to effectively leverage AI coding assistants in production environments.
1010

1111
**Target Audience:** Senior engineers with 3+ years of professional experience
1212
**Estimated Course Duration:** 24-33 hours of hands-on training
@@ -69,6 +69,6 @@ npm run deploy # Deploy to GitHub Pages
6969
## Deployment
7070

7171
- **Platform:** GitHub Pages
72-
- **URL:** https://ofriw.github.io/AI-Coding-Course/
72+
- **URL:** https://agenticoding.ai
7373
- **Trigger:** Automatic on push to main branch
74-
- **Base URL:** `/AI-Coding-Course/`
74+
- **Base URL:** `/`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# AI Coding Course
1+
# Agentic Coding
22

33
A comprehensive online course for experienced software engineers to master AI-assisted development.
44

55
## Overview
66

77
This course teaches systematic approaches to using AI coding assistants effectively in professional software development. Built with [Docusaurus](https://docusaurus.io/), it includes interactive code examples, hands-on exercises, and production-ready patterns.
88

9-
**Live Course:** [https://ofriw.github.io/AI-Coding-Course/](https://ofriw.github.io/AI-Coding-Course/)
9+
**Live Course:** [https://agenticoding.ai](https://agenticoding.ai)
1010

1111
## Course Structure
1212

website/docs/practical-techniques/lesson-6-project-onboarding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ npm run deploy # Deploy to GitHub Pages
213213
## Deployment
214214

215215
- **Platform:** GitHub Pages
216-
- **URL:** https://ofriw.github.io/AI-Coding-Course/
216+
- **URL:** https://agenticoding.ai
217217
- **Trigger:** Automatic on push to main branch
218-
- **Base URL:** `/AI-Coding-Course/`
218+
- **Base URL:** `/`
219219
````
220220

221221
## Automated Generation: Bootstrap with AI

website/docusaurus.config.ts

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type * as Preset from '@docusaurus/preset-classic';
55
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
66

77
const config: Config = {
8-
title: 'AI Coding Course',
8+
title: 'Agentic Coding',
99
tagline: 'Master AI-assisted software engineering for experienced developers',
1010
favicon: 'img/favicon.ico',
1111

@@ -15,26 +15,26 @@ const config: Config = {
1515
},
1616

1717
// Set the production url of your site here
18-
url: 'https://ofriw.github.io',
18+
url: 'https://agenticoding.ai',
1919
// Set the /<baseUrl>/ pathname under which your site is served
2020
// For GitHub pages deployment, it is often '/<projectName>/'
21-
baseUrl: '/AI-Coding-Course/',
21+
baseUrl: '/',
2222

2323
// Modern favicon setup (SVG + Apple touch icon)
2424
headTags: [
2525
{
2626
tagName: 'link',
2727
attributes: {
2828
rel: 'icon',
29-
href: '/AI-Coding-Course/img/icon.svg',
29+
href: '/img/icon.svg',
3030
type: 'image/svg+xml',
3131
},
3232
},
3333
{
3434
tagName: 'link',
3535
attributes: {
3636
rel: 'apple-touch-icon',
37-
href: '/AI-Coding-Course/img/apple-touch-icon.png',
37+
href: '/img/apple-touch-icon.png',
3838
},
3939
},
4040
],
@@ -50,8 +50,8 @@ const config: Config = {
5050

5151
// GitHub pages deployment config.
5252
// If you aren't using GitHub pages, you don't need these.
53-
organizationName: 'ofriw', // Usually your GitHub org/user name.
54-
projectName: 'AI-Coding-Course', // Usually your repo name.
53+
organizationName: 'agenticoding', // Usually your GitHub org/user name.
54+
projectName: 'agenticoding.github.io', // Usually your repo name.
5555
deploymentBranch: 'gh-pages',
5656
trailingSlash: false,
5757

@@ -93,7 +93,7 @@ const config: Config = {
9393
'**/CLAUDE.md', // Exclude AI agent instructions from build
9494
],
9595
editUrl:
96-
'https://github.com/ofriw/AI-Coding-Course/tree/main/website/',
96+
'https://github.com/agenticoding/agenticoding.github.io/tree/main/website/',
9797
showLastUpdateTime: false,
9898
showLastUpdateAuthor: false,
9999
},
@@ -115,7 +115,8 @@ const config: Config = {
115115
path: 'prompts',
116116
routeBasePath: 'prompts',
117117
sidebarPath: './sidebarsPrompts.ts',
118-
editUrl: 'https://github.com/ofriw/AI-Coding-Course/tree/main/website/',
118+
editUrl:
119+
'https://github.com/agenticoding/agenticoding.github.io/tree/main/website/',
119120
showLastUpdateTime: false,
120121
showLastUpdateAuthor: false,
121122
},
@@ -127,7 +128,8 @@ const config: Config = {
127128
path: 'developer-tools',
128129
routeBasePath: 'developer-tools',
129130
sidebarPath: './sidebarsDeveloperTools.ts',
130-
editUrl: 'https://github.com/ofriw/AI-Coding-Course/tree/main/website/',
131+
editUrl:
132+
'https://github.com/agenticoding/agenticoding.github.io/tree/main/website/',
131133
showLastUpdateTime: false,
132134
showLastUpdateAuthor: false,
133135
},
@@ -160,9 +162,9 @@ const config: Config = {
160162
respectPrefersColorScheme: true,
161163
},
162164
navbar: {
163-
title: 'AI Coding Course',
165+
title: 'Agentic Coding',
164166
logo: {
165-
alt: 'AI Coding Course Logo',
167+
alt: 'Agentic Coding Logo',
166168
src: 'img/logo.svg',
167169
},
168170
items: [
@@ -192,7 +194,7 @@ const config: Config = {
192194
dropdownActiveClassDisabled: true,
193195
},
194196
{
195-
href: 'https://github.com/ofriw/AI-Coding-Course',
197+
href: 'https://github.com/agenticoding/agenticoding.github.io',
196198
label: 'GitHub',
197199
position: 'right',
198200
},
@@ -219,11 +221,11 @@ const config: Config = {
219221
items: [
220222
{
221223
label: 'GitHub Discussions',
222-
href: 'https://github.com/ofriw/AI-Coding-Course/discussions',
224+
href: 'https://github.com/agenticoding/agenticoding.github.io/discussions',
223225
},
224226
{
225227
label: 'Report Issues',
226-
href: 'https://github.com/ofriw/AI-Coding-Course/issues',
228+
href: 'https://github.com/agenticoding/agenticoding.github.io/issues',
227229
},
228230
],
229231
},
@@ -232,12 +234,12 @@ const config: Config = {
232234
items: [
233235
{
234236
label: 'GitHub',
235-
href: 'https://github.com/ofriw/AI-Coding-Course',
237+
href: 'https://github.com/agenticoding/agenticoding.github.io',
236238
},
237239
],
238240
},
239241
],
240-
copyright: `Copyright © ${new Date().getFullYear()} AI Coding Course. Built with Docusaurus.`,
242+
copyright: `Copyright © ${new Date().getFullYear()} Agentic Coding. Built with Docusaurus.`,
241243
},
242244
prism: {
243245
theme: prismThemes.github,

0 commit comments

Comments
 (0)