Skip to content

Commit

Permalink
chore: create new configuration to differentiate from AOE ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasschopmans committed Mar 11, 2024
1 parent 396ea4b commit 25a714e
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Run `npm install` to install the dependencies
### Step 2: Change logo and the favicon

Create a folder named `public` and put your `logo.svg` and `favicon.ico` in it.
For reference have a look at [public/logo.svg](./public/logo.svg).
The ideal logo is 150px x 60px. For reference have a look at [public/logo.svg](./public/logo.svg).

### Step 3: Configure the radar

Expand Down
35 changes: 18 additions & 17 deletions data/config.json
Original file line number Diff line number Diff line change
@@ -1,70 +1,71 @@
{
"basePath": "/techradar",
"colors": {
"foreground": "#fff",
"background": "#173d7a",
"foreground": "#fcf2e6",
"background": "#113521",
"highlight": "#d4a373",
"content": "#fff",
"text": "#575757",
"highlight": "#029df7",
"link": "#bc6c25",
"border": "rgba(255, 255, 255, 0.1)",
"tag": "rgba(255, 255, 255, 0.1)"
},
"quadrants": [
{
"id": "languages-and-frameworks",
"title": "Languages & Frameworks",
"description": "We've placed development languages (such as Scala or Golang) here, as well as more low-level development frameworks (such as Play or Symfony), which are useful for implementing custom software of all kinds.",
"color": "#84BFA4"
"description": "A selection of programming languages, alongside essential frameworks for building a variety of custom software.",
"color": "#a3b18a"
},
{
"id": "methods-and-patterns",
"title": "Methods & Patterns",
"description": "Here we put information on methods and patterns concerning development, continuous x, testing, organization, architecture, etc.",
"color": "#248EA6"
"description": "Key software development methods and design patterns, covering everything from continuous integration and testing to architecture.",
"color": "#588157"
},
{
"id": "platforms-and-aoe-services",
"id": "platforms-and-operations",
"title": "Platforms & Operations",
"description": "This quadrant clusters technologies around the operation of software and infrastructure related platforms, tools and services.",
"color": "#F25244"
"description": "Technologies and tools for software and infrastructure operations, including platforms and services for managing and scaling applications.",
"color": "#3f633e"
},
{
"id": "tools",
"title": "Tools",
"description": "Here we put different software tools - from small helpers to bigger software projects.",
"color": "#F2A25C"
"description": "A range of software tools, from simple productivity enhancers to comprehensive project solutions, catering to various project needs.",
"color": "#40713f"
}
],
"rings": [
{
"id": "adopt",
"title": "Adopt",
"description": "We can clearly recommend this technology. We have used it for longer period of time in many teams and it has proven to be stable and useful.",
"color": "#5cb449",
"color": "#588157",
"radius": 0.5,
"strokeWidth": 5
},
{
"id": "trial",
"title": "Trial",
"description": "We have used it with success and recommend to have a closer look at the technology in this ring. The goal of items here is to look at them more closely, with the goal to bring them to the adopt level.",
"color": "#faa03d",
"color": "#457b9d",
"radius": 0.69,
"strokeWidth": 3
},
{
"id": "assess",
"title": "Assess",
"description": "We have tried it out and we find it promising. We recommend having a look at these items when you face a specific need for the technology in your project.",
"color": "#029df7",
"color": "#bc6c25",
"radius": 0.85,
"strokeWidth": 2
},
{
"id": "hold",
"title": "Hold",
"description": "This category is a bit special. Unlike the others, we recommend to stop doing or using something. That does not mean that they are bad and it often might be ok to use them in existing projects. But we move things here if we think we shouldn't do them anymore - because we see better options or alternatives now.",
"color": "#688190",
"color": "#d62828",
"radius": 1,
"strokeWidth": 0.75
}
Expand Down Expand Up @@ -122,7 +123,7 @@
],
"imprint": "https://www.aoe.com/en/imprint.html",
"labels": {
"title": "AOE Technology Radar",
"title": "Technology Radar",
"imprint": "Legal Information",
"quadrant": "Quadrant",
"quadrantOverview": "Quadrant Overview",
Expand Down
2 changes: 1 addition & 1 deletion data/radar/2017-03-01/demo-2.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Demo 2"
ring: trial
quadrant: platforms-and-aoe-services
quadrant: platforms-and-operations
tags: [coding]
---

Expand Down
2 changes: 1 addition & 1 deletion data/radar/2024-03-01/demo-2.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Demo 2"
ring: adopt
quadrant: platforms-and-aoe-services
quadrant: platforms-and-operations
tags: [coding]
---

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aoe_technology_radar",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"private": true,
"bin": {
"techradar": "./bin/techradar.sh"
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/components/ItemDetail/ItemDetail.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@

.content a {
color: var(--link);
text-decoration: underline;
&:hover {
text-decoration: none;
}
}

@media (min-width: 768px) {
Expand Down

0 comments on commit 25a714e

Please sign in to comment.