{"id":26871270,"url":"https://github.com/codeadamca/github-pages-deploy-jekyll","last_synced_at":"2026-05-06T22:09:16.462Z","repository":{"id":175047975,"uuid":"653269599","full_name":"codeadamca/github-pages-deploy-jekyll","owner":"codeadamca","description":"A sandbox for testing out GutHub Pages and Jekyll.","archived":false,"fork":false,"pushed_at":"2025-01-26T21:38:00.000Z","size":1598,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T07:18:54.783Z","etag":null,"topics":["deployment","github-pages","jekyll","markdown"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codeadamca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-13T18:16:42.000Z","updated_at":"2025-01-26T21:38:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"ad14fca4-a615-44c8-a26e-8dc359ef3d4b","html_url":"https://github.com/codeadamca/github-pages-deploy-jekyll","commit_stats":null,"previous_names":["codeadamca/github-jekyll-sandbox"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codeadamca/github-pages-deploy-jekyll","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-jekyll","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-jekyll/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-jekyll/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-jekyll/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeadamca","download_url":"https://codeload.github.com/codeadamca/github-pages-deploy-jekyll/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeadamca%2Fgithub-pages-deploy-jekyll/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32713890,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T19:35:05.142Z","status":"ssl_error","status_checked_at":"2026-05-06T19:35:03.996Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deployment","github-pages","jekyll","markdown"],"created_at":"2025-03-31T07:18:57.396Z","updated_at":"2026-05-06T22:09:16.425Z","avatar_url":"https://github.com/codeadamca.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Pages and Jekyll\n\n\u003e [!Warning]  \n\u003e This repo is a work in progress!\n\nA sandbox for testing out GutHub Pages and [Jekyll](https://jekyllrb.com/).\n\n## Install Ruby\n\nOn a Mac use Homebrew to install Ruby 3.0. A Mac ships with Ruby, but it will be an outdated version. \n\n```sh\nbrew install ruby@3.0\n```\n\nWe do want Ruby first in our PATH. Check which verion of Shell you are using:\n\n```sh\necho $SHELL\n```\n\nIf the result is `/bin/zsc`, run this command:\n\n```sh\necho 'export PATH=\"/opt/homebrew/opt/ruby/bin:$PATH\"' \u003e\u003e ~/.zshrc\n```\n\nIf the result is `/bin/bash`, run this commant:\n\n```sh\necho 'export PATH=\"$HOME/.gem/ruby/X.X.0/bin:$PATH\"' \u003e\u003e ~/.bash_profile\n```\n\n\u003e [!Note]\n\u003e The recommendation in your terminal may be slightly different than the above command. Use the version in your terminal.\n\nClose your Terminal and reopen it. Check your version of Ruby:\n\n```sh\nruby -v\n```\n\nYou should see a version of 3.0 or highter. \n\n## Install Bundler and Jekyll\n\nRun this command to install [Bundler](https://bundler.io/) and [Jekyll](https://jekyllrb.com/):\n\n```sh\ngem install --user-install bundler jekyll\n```\n\n## Create a Repo\n\nCreate a repo for this project and add the following for your `.gitignore`:\n\n```\n_site/\n.sass-cache/\n.jekyll-cache/\n.jekyll-metadata\n.bundle/\nvendor/\n.DS_Store\n```\n## Create a Jekyll Website\n\nRun the following commands:\n\n```sh\nbundle init\nbundle add jekyll --version \"~\u003e4.2\"\nbundle config set --local path 'vendor/bundle'\nbundle install\nbundle exec jekyll new --force --skip-bundle .\nbundle add webrick\nbundle install\nbundle update\n```\n\n## Start the Jekyll Website\n\n```sh\nbundle exec jekyll serve --livereload\n```\n\nOpen the provided URL in a browser, something like `http://127.0.0.1:4000/`, and start editing!\n\n## Original Theme files\n\nIf you wnat to see the original theme files, use this commant:\n\n```sh\nopen $(bundle info --path minima) \n```\n\n\u003e This repo is available to view at:  \n\u003e [https://jekyll.codeadam.ca](https://jekyll.codeadam.ca).\n\n---\n\n## Repo Resources\n\n- [GitHub Jekyll](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/about-github-pages-and-jekyll)\n- [Jekyll](https://jekyllrb.com/)\n\n\u003cbr\u003e\n\u003ca href=\"https://codeadam.ca\"\u003e\n\u003cimg src=\"https://cdn.codeadam.ca/images@1.0.0/codeadam-logo-coloured-horizontal.png\" width=\"200\"\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeadamca%2Fgithub-pages-deploy-jekyll","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeadamca%2Fgithub-pages-deploy-jekyll","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeadamca%2Fgithub-pages-deploy-jekyll/lists"}