Skip to content

Commit f9e4c01

Browse files
authored
Move docs to docs/site; add Gemfile for local Jekyll preview
* Move docs to docs/site; add Gemfile + local Jekyll preview doc Separate published Jekyll content (docs/site/) from any internal docs that may live alongside it later (ADRs, plans, research, etc.). Matches the convention used by hyperbee.migrations and the cookiecutter. - Move all Jekyll content and docs.projitems/docs.shproj into docs/site/ - docs.projitems paths auto-resolve via $(MSBuildThisFileDirectory) - Update .slnx to point at docs/site/docs.shproj - Update deploy workflow to build from ./docs/site - Add docs/site/Gemfile for local Jekyll preview - Add docs/site/local-jekyll.md onboarding doc - .gitignore: add Jekyll build artifacts * Also ignore .claude/ (Claude Code scratch dir)
1 parent b2b54d1 commit f9e4c01

16 files changed

Lines changed: 454 additions & 3 deletions

.github/workflows/deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Build with Jekyll
3434
uses: actions/jekyll-build-pages@v1
3535
with:
36-
source: ./docs
36+
source: ./docs/site
3737
destination: ./_site
3838
- name: Upload artifact
3939
uses: actions/upload-pages-artifact@v3

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,4 +395,15 @@ FodyWeavers.xsd
395395
*.msp
396396

397397
# JetBrains Rider
398-
*.sln.iml
398+
*.sln.iml
399+
# Jekyll / GitHub Pages local build
400+
_site/
401+
.jekyll-cache/
402+
.jekyll-metadata
403+
.sass-cache/
404+
vendor/
405+
.bundle/
406+
docs/site/Gemfile.lock
407+
408+
# Claude Code scratch directory (local, not shared)
409+
.claude/

Hyperbee.Templating.slnx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<File Path="LICENSE" />
66
<File Path="README.md" />
77
<File Path="version.json" />
8-
<Project Path="docs/docs.shproj" />
8+
<Project Path="docs/site/docs.shproj" />
99
</Folder>
1010
<Folder Name="/Solution Items/.github/">
1111
<File Path=".github/dependabot.yml" />

docs/site/Gemfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll", "~> 4.3"
4+
gem "just-the-docs"
5+
6+
group :jekyll_plugins do
7+
gem "jekyll-remote-theme"
8+
gem "jekyll-include-cache"
9+
gem "jekyll-seo-tag"
10+
gem "jekyll-relative-links"
11+
end
12+
13+
gem "webrick", "~> 1.8"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)