No description
|
||
---|---|---|
.forgejo/workflows | ||
_data | ||
_layouts | ||
src | ||
.domains | ||
.gitignore | ||
_config.yml | ||
Gemfile | ||
Gemfile.lock | ||
index.html | ||
README.md |
Sidebar Region MonDraft Board
This is a bare-minimum interactive draft board for the Sidebar Region Pokemon Draft League.
Made with:
- Pokemon Types CSS
- DataTables
- Smogon Mon Data
- The Power of Friendship
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:
- Remove the
_site
directory. - Clone the "pages" branch into
_site
:git clone -b pages ssh://git@forge.niblock.tech:8222/vagabond/mondraft-board.git _site
- Run the container from above step. It will now build into
_site
, which is linked to the "pages" branch. - 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.