You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This directory contains the GitHub Pages site for the BMSSP Benchmark Game project.
4
+
5
+
## Site Structure
6
+
7
+
-`index.md` - Main landing page
8
+
-`algorithm.md` - Algorithm theory and mathematical analysis
9
+
-`implementations.md` - Language implementation details and comparison
10
+
-`benchmarking.md` - Benchmarking guide and performance analysis
11
+
-`getting-started.md` - Setup and first steps guide
12
+
13
+
## Build Locally
14
+
15
+
To build and serve the site locally:
16
+
17
+
```bash
18
+
cd docs
19
+
bundle install
20
+
bundle exec jekyll serve
21
+
```
22
+
23
+
Then open http://localhost:4000 in your browser.
24
+
25
+
## GitHub Pages Deployment
26
+
27
+
The site is automatically deployed to GitHub Pages via GitHub Actions when changes are pushed to the main branch. The workflow is defined in `.github/workflows/pages.yml`.
28
+
29
+
## Configuration
30
+
31
+
-`_config.yml` - Jekyll configuration and site metadata
32
+
-`_layouts/default.html` - Custom layout with navigation
0 commit comments