Skip to content

Commit b803122

Browse files
committed
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 - Delete .todo.md - Add docs/site/Gemfile for local Jekyll preview - Add docs/site/local-jekyll.md onboarding doc - .gitignore: add Jekyll build artifacts
1 parent b2b54d1 commit b803122

17 files changed

Lines changed: 460 additions & 3 deletions

.claude/settings.local.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(xargs grep:*)",
5+
"Bash(wc -l /c/Development/hyperbee.templating/src/Hyperbee.Templating/**/*.cs)",
6+
"Bash(find /c/Development/hyperbee.templating/src -type f -name \"*.cs\" -not -path \"*/obj/*\" -exec grep -l \"public\" {})"
7+
]
8+
}
9+
}

.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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,4 +395,12 @@ 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

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)