No description
Find a file
Bill Niblock 5cc0e22319
All checks were successful
/ jekyll (push) Successful in 44s
Begin add Team Board
2025-08-06 18:18:06 -04:00
.forgejo/workflows Add build actions 2025-08-04 17:40:49 -04:00
_data First Dump 2025-08-04 16:59:46 -04:00
_layouts Favicon 2025-08-05 22:56:12 -04:00
src Fix Styles, Don't Force JS 2025-08-05 23:52:48 -04:00
.domains Update Repo Metadata 2025-08-04 17:31:37 -04:00
.gitignore Repo Metadata 2025-08-04 16:59:32 -04:00
_config.yml First Dump 2025-08-04 16:59:46 -04:00
Gemfile Repo Metadata 2025-08-04 16:59:32 -04:00
Gemfile.lock Repo Metadata 2025-08-04 16:59:32 -04:00
index.html Begin add Team Board 2025-08-06 18:18:06 -04:00
README.md Expand DataTable options 2025-08-05 14:10:56 -04:00

Sidebar Region MonDraft Board

This is a bare-minimum interactive draft board for the Sidebar Region Pokemon Draft League.

Made with:

Building

For just running locally, easiest is to use a container:

    docker run --rm \
               --volume="$PWD:/srv/jekyll:Z" \
               --publish [::1]:4000:4000 \
               jvconseil/jekyll-docker:stable \
               jekyll serve

For modifying and publishing newly generated content, the following process works pretty well:

  1. Remove the _site directory.
  2. Clone the "pages" branch into _site: git clone -b pages ssh://git@forge.niblock.tech:8222/vagabond/mondraft-board.git _site
  3. Run the container from above step. It will now build into _site, which is linked to the "pages" branch.
  4. When satisfied with changes, be sure to push both from _site and the base repository to keep the source and the results up-to-date.