{"id":18798969,"url":"https://github.com/cncf/radar","last_synced_at":"2025-04-13T17:22:37.874Z","repository":{"id":42061383,"uuid":"277571485","full_name":"cncf/radar","owner":"cncf","description":"CNCF Tech Radar","archived":false,"fork":false,"pushed_at":"2023-07-11T03:29:12.000Z","size":5967,"stargazers_count":35,"open_issues_count":19,"forks_count":26,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-10T13:25:23.042Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://radar.cncf.io","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cncf.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":"2020-07-06T14:55:27.000Z","updated_at":"2025-03-31T07:03:50.000Z","dependencies_parsed_at":"2023-02-06T12:15:27.330Z","dependency_job_id":null,"html_url":"https://github.com/cncf/radar","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cncf%2Fradar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cncf%2Fradar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cncf%2Fradar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cncf%2Fradar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cncf","download_url":"https://codeload.github.com/cncf/radar/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248750870,"owners_count":21155797,"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":[],"created_at":"2024-11-07T22:13:36.910Z","updated_at":"2025-04-13T17:22:37.853Z","avatar_url":"https://github.com/cncf.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CNCF RADAR\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/13db5650-29ee-47bd-92b3-b96025c85009/deploy-status)](https://app.netlify.com/sites/cncf-radar/deploys)\n\nThese are the instructions for people who want to run Radar locally. For development instructions visit \n[DEVELOPMENT.md](https://github.com/cncf/radar/blob/master/DEVELOPMENT.md) \n\n## Requirements\n\nInstall [Docker](https://www.docker.com/) and Docker Compose. Docker Desktop for Mac already includes Compose.\n\n## Building image\n\nRun `bin/install`. This is only required the first time you clone this repo or when you pull.\n\n## Running app locally\n\nExecute `bin/run dev` and visit [localhost:3000](http://localhost:3000)\n\n## Generating a build\n\nThis step is not required for development or adding radar data, this is run on Netlify.\n\n`bin/run build`\n\nTo see the generated build run:\n\n`bin/run prod`\n\n## Creating a new radar\n\nCreate a YAML file under [content/radars](content/radars), the file name must be formatted `YYYY-MM-${radarName}.yml`, `YYYY-MM` should be set to the radar's publish year/month and `radarName` should only contain lower case characters and dashes. Copy the content of the template radar [content/radars/1999-01-radar-template.yml](content/radars/1999-01-radar-template.yml) into the new radar and modify as needed. Once the radar is ready to be published remove `draft: true`.\n\n## Radar Schema\n\n| Attribute | Type | Required | Notes | \n| --- | --- | --- | --- | \n| name  | String | Yes | |\n| draft  | Boolean | No | Default: false |\n| themes | Array of [Themes](#theme-schema) | Yes | |\n| video | URL | No | Youtube URL of the video |\n| team | Array of [Members](#member-schema) | Yes | |\n| points | Array of [Points](#point-schema) | Yes (if subradars not set) | |\n| subradars | Array of [Subradars](#subradar-schema) | Yes (if points not set) | Use this instead of points if two subradars should be shown like [this](https://radar.cncf.io/2021-06-multicluster-management) |\n| companies | Array of [Companies](#company-schema) | Yes | |\n\n#### Theme schema\n\n| Attribute | Type | Required | \n| --- | --- | --- |\n| headline  | String | Yes |\n| content | String | Yes |\n\n#### Member schema\n\n| Attribute | Type | Required | Notes |\n| --- | --- | --- | --- |\n| name  | String | Yes | | \n| photo | URL | Yes | | \n| bio | String | Yes | |\n| twitter | String | No | Twitter handle  |\n| linkedin | String | No | LinkedIn handle | \n\n#### Point schema\n\n| Attribute | Type | Required | Notes |\n| --- | --- | --- | --- |\n| name  | String | Yes | | \n| homepage | URL | Yes (if repo not set) | |\n| repo | String | Yes (if homepage not set) | github repo (eg kubernetes/kubernetes or facebook/react) |\n| level | String | Yes | One of adopt, trial, assess or hold |\n| votes | [Votes](#votes-schema) | Yes | |\n\n#### Votes schema\n\n| Attribute | Type | Required | \n| --- | --- | --- |\n| adopt  | integer | No |\n| trial  | integer | No |\n| assess  | integer | No |\n| hold  | integer | No |\n\n_These are not required, leave out those that are 0_\n\n#### Subradar schema\n\n| Attribute | Type | Required |\n| --- | --- | --- |\n| name  | String | Yes |\n| votes | [Votes](#votes) | Yes |\n\n#### Company schema\n\n| Attribute | Type | Required | Notes | \n| --- | --- | --- | --- |\n| landscapeId  | String | Yes | ID of the company on the CNCF Landscape, eg [v-vmware-member](https://landscape.cncf.io/members?selected=v-mware-member) | \n| industry  | String | Yes | | \n\n## Draft radars\n\nSetting `draft: true` to a radar will make it a draft and therefore it won't be visible on the homepage. Drafts will be viewable from `/drafts`, eg [radar.cncf.io/drafts](https://radar.cncf.io/drafts) or [localhost:3000/drafts](http://localhost:3000/drafts)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcncf%2Fradar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcncf%2Fradar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcncf%2Fradar/lists"}