{"id":21513232,"url":"https://github.com/patrickfav/website-dr-sel","last_synced_at":"2025-03-17T15:41:46.326Z","repository":{"id":40233141,"uuid":"135200872","full_name":"patrickfav/website-dr-sel","owner":"patrickfav","description":"A simple static website created with jekyll","archived":false,"fork":false,"pushed_at":"2025-02-15T18:16:27.000Z","size":9217,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-15T19:20:06.823Z","etag":null,"topics":["jekyll","jekyll-site","spectral","static-site-generator","website","website-performance"],"latest_commit_sha":null,"homepage":"https://selwicka-wienerroither.com","language":"SCSS","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/patrickfav.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":"2018-05-28T19:23:57.000Z","updated_at":"2025-02-15T18:16:30.000Z","dependencies_parsed_at":"2025-02-15T19:19:26.892Z","dependency_job_id":"e85a09c2-e6da-4fd3-a962-2f886b6c113b","html_url":"https://github.com/patrickfav/website-dr-sel","commit_stats":null,"previous_names":[],"tags_count":62,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickfav%2Fwebsite-dr-sel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickfav%2Fwebsite-dr-sel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickfav%2Fwebsite-dr-sel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickfav%2Fwebsite-dr-sel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patrickfav","download_url":"https://codeload.github.com/patrickfav/website-dr-sel/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244059572,"owners_count":20391358,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["jekyll","jekyll-site","spectral","static-site-generator","website","website-performance"],"created_at":"2024-11-23T22:55:05.918Z","updated_at":"2025-03-17T15:41:46.306Z","avatar_url":"https://github.com/patrickfav.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jekyll Static Website Source for Doctor's Landing Page\n\n[![Build Status](https://github.com/patrickfav/website-dr-sel/actions/workflows/build_deploy.yml/badge.svg)](https://github.com/patrickfav/website-dr-sel/actions)\n[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=patrickfav_website-dr-sel\u0026metric=bugs)](https://sonarcloud.io/summary/new_code?id=patrickfav_website-dr-sel)\n[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=patrickfav_website-dr-sel\u0026metric=sqale_index)](https://sonarcloud.io/summary/new_code?id=patrickfav_website-dr-sel)\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=patrickfav_website-dr-sel\u0026metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=patrickfav_website-dr-sel)\n\nThis is the source for the [Jekyll](https://jekyllrb.com) static website project for a very simple doctors landing page.\nThe production version can be found [here](https://selwicka-wienerroither.com/).\n\n\n[![website screenshot](https://repository-images.githubusercontent.com/135200872/2f76b1c1-d1e5-4cd8-8b69-0948bbdecbed)](https://selwicka-wienerroither.com/)\n\n\n## Build\n\n[Jekyll](https://jekyllrb.com) is a Ruby CLI and used as engine for Github Pages.\n\n### Ruby\n\nJekyll requires Ruby 2.6+ so you might be required to install it.\n\nInstall Ruby itself:\n\n    apt-get update\n    apt-get install ruby-full\n    apt-get install nodejs\n\nInstall rbenv for easier switching of ruby versions\n\n```bash\nsudo apt install git curl libssl-dev libreadline-dev zlib1g-dev autoconf bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev\ncurl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash\n```\n\nand add this to `~/.zshrc` (or `~/.bashrc`)\n\n```\necho 'export PATH=\"$HOMe/.rbenv/bin:$PATH\"' \u003e\u003e ~/.zshrc\necho 'eval \"$(rbenv init -)\"' \u003e\u003e ~/.zshrc\nsource ~/.zshrc\n\ncurl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-doctor | bash\n```\n\nthen install the desired ruby version\n```bash\n# will read .ruby-version file and install the required version if in the root of the repo\nrbenv install\nruby -v\n```\n\nThen update the gems (Ruby package manager)\n\n    gem update\n\nFor details on how to do this on the [Linux subsystem for Windows 10 see here](https://jekyllrb.com/docs/windows/).\n\n### Bundler and Jekyll\n\nInstall the `bundler`:\n\n    gem install bundler\n\nyou may want to set the default gem path, so you don't need `sudo`\n\n    bundle config path vendor/bundle\n    \nthen, in the project root folder, install all the dependencies with\n\n    bundle install\n\nYou should be able to run jekyll now with\n\n    bundle exec jekyll -v\n\n### Develop\n\nWith this command a development web-server will be started on [http://localhost:4000](http://localhost:4000)\n\n    bundle exec jekyll serve --livereload\n\nFor more info see the [quick-start section](https://jekyllrb.com/docs/quickstart/).\n\n### Build Site\n\nWith the following command the website will be packaged and copied to `_site`\n\n    bundle exec jekyll build\n\n## Continuous Deployment\n\nEvery Pull-Request will automatically deploys to a temporary Firebase Staging environment (link posted as comment in the PR by Github Actions)\n(_Note_: This will NOT be build with the production flag.)\n\nEvery main commit triggers a deploy to the [Firbase Hosting](https://selwicka-wienerroither.com/) through [Github Actions](https://github.com/patrickfav/website-dr-sel/actions).\n\n# Frameworks and Libraries\n\n* [Jekyll](https://jekyllrb.com/)\n  * Plugins: [Maps](https://github.com/ayastreb/jekyll-maps), [Last-Modified](https://github.com/gjtorikian/jekyll-last-modified-at),\n  [Sitemap](https://github.com/jekyll/jekyll-sitemap), [Analytics](https://github.com/hendrikschneider/jekyll-analytics), \n  [Version](https://github.com/rob-murray/jekyll-version-plugin), [Minifier](https://github.com/digitalsparky/jekyll-minifier), \n  [Webp](https://github.com/sverrirs/jekyll-webp)\n* [HTML5 UP's Spectral Theme](https://github.com/arkadianriver/spectral)\n  * [Skel 3](https://github.com/ajlkn/skel), [Jquery 3.3.1](https://jquery.com/), [Scrolly](https://github.com/Victa/scrolly), [Scrollex](https://github.com/ajlkn/jquery.scrollex)\n* [Font Awesome 5](https://fontawesome.com/)\n* [Firebase Hosting](https://firebase.google.com/docs/hosting/)\n\n# License\n\nProprietary: Patrick Favre-Bulle 2018\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickfav%2Fwebsite-dr-sel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatrickfav%2Fwebsite-dr-sel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickfav%2Fwebsite-dr-sel/lists"}