Skip to content

Commit af86d56

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 - Delete .todo.md - Add docs/site/Gemfile for local Jekyll preview - Add docs/site/local-jekyll.md onboarding doc - .gitignore: add Jekyll build artifacts * Strip UTF-8 BOMs and replace non-ASCII chars with ASCII just-the-docs / Jekyll fails intermittently on files with BOMs or stray Unicode. Sweep docs/site/: - Strip BOM (EF BB BF) from all text files (*.md, *.yml, *.html) - Replace em-dash \u2014 with -- - Replace en-dash \u2013 with - - Replace nbsp U+00A0 with regular space - Replace right arrow \u2192 with -> - Replace mu \u03bc with u (microseconds become us in benchmark tables)
1 parent f3c12cc commit af86d56

File tree

18 files changed

+481
-32
lines changed

18 files changed

+481
-32
lines changed

.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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,3 +403,12 @@ claude.md
403403
**/claude-tasks.md
404404
**/baseline-benchmarks.md
405405
/nuget.config
406+
407+
# Jekyll / GitHub Pages local build
408+
_site/
409+
.jekyll-cache/
410+
.jekyll-metadata
411+
.sass-cache/
412+
vendor/
413+
.bundle/
414+
docs/site/Gemfile.lock

Hyperbee.Json.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.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<footer class="site-footer">
1+
<footer class="site-footer">
22
Hyperbee Json Docs
33
</footer>#*
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)