Simple Jekyll site for hosting the Bitcoin Core PR Review club at https://bitcoincore.reviews/.
You'll need Ruby & Jekyll to run the site locally. Once they're setup:
- Clone the repository and go into the directory
- Run
bundle install
- Run
make preview
- Go to http://localhost:4000
See the CONTRIBUTING.md doc for how to create a post for an upcoming meeting.
All site configurations are either contained in _config.yml
or _data/settings.yml
. Some data is duplicated between the two due to the way Jekyll injects variables, so be sure to update both.
To run all tests: rake test
or just rake
To run one test file: rake TEST=test/test_rake_posts_new
To run an individual test in a test file:
rake TEST=test/test_rake_posts_new TESTOPTS=--name=test_rake_posts_new
Before running tests for the first time, you may need to run bundle update
.
Before running the test_all_links
test (or all of the tests, which includes
it), the site needs to be started up locally with make preview
, or with make clean preview
if any meeting logs were changed, to pre-render the logs through
the auto_logs_markup
plugin.
Thanks to LeNPaul for the Jekyll starter kit this was forked from and to Will O'Beirne for pointing me in that direction.