From 230072bff39ea6e790ad6aebd559505b780fb4ea Mon Sep 17 00:00:00 2001 From: Valentina Vecchio Date: Thu, 17 Apr 2025 11:27:19 +0100 Subject: [PATCH 1/2] GemFile for local website build --- GemFile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 GemFile diff --git a/GemFile b/GemFile new file mode 100644 index 0000000..37cf923 --- /dev/null +++ b/GemFile @@ -0,0 +1,3 @@ +gem "github-pages", group: :jekyll_plugins + +gem "webrick", "~> 1.9" From ff5a637216efed10b91c58f5575713fd8a3f4849 Mon Sep 17 00:00:00 2001 From: Valentina Vecchio Date: Thu, 17 Apr 2025 11:27:41 +0100 Subject: [PATCH 2/2] update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 73b964a..ec79464 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,18 @@ pip install . ```bash randomfpl ``` + +## Test website locally + +Create a dummy team-of-day.md + +```bash +mkdir _includes +echo "#This is where the team of the day will be!" > _includes/team-of-the-day.md +``` + +build website with bundle + +```bash +bundle exec jekyll serve --port 4001 +```