This is the location of CHT Technology Radar for Implementers content.
If you are looking for the content of the CHT Technology Radar for Contributors, you can find it here.
This Tech Radar is built by using the CHT Technology Radar Core.
For a new Technology Radar release, create a folder of the release date (YYYY-MM-DD) under ./radar
.
The items are written in Markdown (.md
) format.
Each file has a front-matter header where the attributes of the item are listed:
---
title: "JavaScript"
ring: adopt
quadrant: languages-and-frameworks
---
Text goes here. You can use **markdown** here.
Following front-matter attributes are possible:
- title: Name of the Item
- quadrant: Quadrant. One of
languages-and-frameworks
(forApp Building
quadrant),methods-and-patterns
(forData Use
quadrant),platforms-and-aoe-services
(forDeployment Management
quadrant),tools
(forCHT App Features
quadrant) - ring: Ring section in radar. One of
trial
,adopt
,stop
- info: (optional) A short textual description of the item (visible in overview pages)
- featured: (optional, default "true") If you set this to
false
, the item will not be visible in the radar quadrants but still be available in the overview.
The name of the .md file acts as item identifier and may overwrite items with the same name from older releases.
If an item is overwritten in a new release, the attributes from the new item are merged with the old ones, and a new history entry is created for that item.
You can integrate images in your markdown. Put the image files in your public folder and reference them:
![an image](/images/an-image.png)
New technologies should be tagged. Tags should be managed in the public/config.json
file.
The tags should be used in the .md files as follows:
tags: [data, dashboards]
You can update the rings and the quadrants in the public/config.json
file. If you update the names of the rings and quadrants,
you will need to update the technologies .md files accordingly.
The text on the "How to use the CHT Technology Radar for Implementers" page can be updated in the public/messages.json
file.
Further instructions on how to customize the Technical Radar can be found in the medic/cht-tech-radar-core repository.
To host the application under a sub path, set the environment variable PUBLIC_URL
, e.g. "/cht-tech-radar".
The default is /
.
For local development you can use
/build
and use this for the following steps.
npm install
PUBLIC_URL=/build REACT_APP_RADAR_NAME="CHT Technology Radar for Implementers" npm run start
Then open the Tech Radar here: http://localhost:8080/build
npm install
PUBLIC_URL=/build REACT_APP_RADAR_NAME="CHT Technology Radar for Implementers" npm run start:static
Then open the Tech Radar here: http://localhost:8080/build
npm run generateJson
You can do this while the server is running.
You can find the newly created rd.json in /build/rd.json
.
First, ensure that you are performing the next steps on the main
branch.
PUBLIC_URL=/cht-tech-radar-implementers REACT_APP_RADAR_NAME="CHT Technology Radar for Implementers" npm run build:static
npm run deploy
The CHT Tech Radars are built starting from the AOE Tech Radar content. If you want to build your own Tech Radar you may want to have a look at the AOE Tech Radar GitHub repository.