{"id":20521552,"url":"https://github.com/iver-wharf/rfcs","last_synced_at":"2026-03-19T16:13:47.409Z","repository":{"id":40004820,"uuid":"359357723","full_name":"iver-wharf/rfcs","owner":"iver-wharf","description":"Wharf approved and pending design decisions using request for comment (RFC) process","archived":false,"fork":false,"pushed_at":"2023-01-31T03:54:02.000Z","size":594,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-06T00:29:34.797Z","etag":null,"topics":["rfc","rfc-process","rfcs","wharf"],"latest_commit_sha":null,"homepage":"https://wharf.iver.com/rfcs","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iver-wharf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-04-19T06:50:41.000Z","updated_at":"2022-05-10T17:17:44.000Z","dependencies_parsed_at":"2023-02-16T15:46:09.690Z","dependency_job_id":null,"html_url":"https://github.com/iver-wharf/rfcs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iver-wharf/rfcs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iver-wharf%2Frfcs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iver-wharf%2Frfcs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iver-wharf%2Frfcs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iver-wharf%2Frfcs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iver-wharf","download_url":"https://codeload.github.com/iver-wharf/rfcs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iver-wharf%2Frfcs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30167963,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T07:56:45.623Z","status":"ssl_error","status_checked_at":"2026-03-06T07:55:55.621Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["rfc","rfc-process","rfcs","wharf"],"created_at":"2024-11-15T22:29:50.154Z","updated_at":"2026-03-06T08:33:33.034Z","avatar_url":"https://github.com/iver-wharf.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wharf RFCs (Request For Comments)\n\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/4832fc1e5ca944d48f9a7cfd5e8334b0)](https://www.codacy.com/gh/iver-wharf/rfcs/dashboard?utm_source=github.com\\\u0026utm_medium=referral\\\u0026utm_content=iver-wharf/rfcs\\\u0026utm_campaign=Badge_Grade)\n\nFor any substantial change that needs to be thought through in Wharf, we try to\nuse RFCs for them instead of internally trying to talk it out in meetings.\n\nNot every decision needs an RFC, nor is any RFC excessive. This is the\nstart of our journey with RFCs, so we're trying to limit them to changes with\nmajor impact.\n\nRead more about the Wharf RFC process over at the GitHub pages:\n\u003chttps://wharf.iver.com/rfcs/\u003e\n\n## Disclaimer\n\nThe documents and markdown files in this repository are documentation of our\ndecision making. Only to have a place to look back at, similar to meeting\nnotes or recordings, so we can see our previous decisions.\n\n**It is not** documentation of how things are meant to be implemented. Do not\ntake this repository as the source of truth of how Wharf works. Please check\nout our [Wharf documentation](https://wharf.iver.com/) or the\n[source code](https://github.com/iver-wharf/) itself to gain the actual source\nof truth.\n\n## Running locally\n\nThis repository is hosted using GitHub Pages, but you can also host it locally\nif you want.\n\n1. Install Jekyll requirements, such as Ruby v2.4.0 (or higher), GCC, and Make\n\n   Jekyll's installation guide: \u003chttps://jekyllrb.com/docs/installation/#requirements\u003e\n\n2. Install `bundler` Ruby gem.\n\n   You will need administrator access, so make sure to add `sudo` or run the\n   terminal as administrator to be able to install these gems.\n\n   ```sh\n   # Linux/Mac\n   $ sudo gem install bundler\n   ```\n\n   ```pwsh\n   # Windows (PowerShell), make sure to start the terminal as administrator\n   PS\u003e gem install bundler\n   ```\n\n3. Install dependencies (Jekyll, Just-The-Docs theme, etc)\n\n   ```sh\n   bundle install\n\n   # Optionally, if you have GNU make\n   make deps\n   ```\n\n4. Start the site. This does not need administrator access.\n\n   ```sh\n   bundle exec jekyll serve\n\n   # Optionally add the --livereload flag for automatic refresh\n   bundle exec jekyll serve --livereload\n\n   # Optionally, if you have GNU make\n   make serve\n   ```\n\n5. Visit the locally hosted page over at: \u003chttp://localhost:4000/\u003e\n\n## Linting markdown\n\n```sh\nmake deps # download linting dependencies\n\nmake lint\n\nmake lint-md # only lint Markdown files\n```\n\nSome errors can be fixed automatically. Keep in mind that this updates the\nfiles in place.\n\n```sh\nmake lint-fix\n\nmake lint-fix-md # only lint and fix Markdown files\n```\n\n---\n\nMaintained by [Iver](https://www.iver.com/en).\nLicensed under the [MIT license](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiver-wharf%2Frfcs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiver-wharf%2Frfcs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiver-wharf%2Frfcs/lists"}