788bfad6ab
Added an explicit host setting so Jekyll serves docs on all interfaces in debugDocs.sh Documented the signing command for the release package in signPackage.sh Inserted shebangs for various helper scripts such as makePackage.sh to ensure they run correctly as standalone scripts
9 lines
265 B
Bash
Executable File
9 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
# Run local jeckyl-hosted sevever for GitHub documentation page.
|
|
# See https://jekyllrb.com/docs/installation/ for instructions on how to isntall jeckyll locally.
|
|
# Then
|
|
# cd docs
|
|
# bundle install
|
|
#
|
|
cd docs
|
|
bundle exec jekyll serve --host 0.0.0.0 |