diff --git a/radar/2022-03-28/.gitkeep b/radar/2022-03-28/.gitkeep deleted file mode 100644 index 8b13789..0000000 --- a/radar/2022-03-28/.gitkeep +++ /dev/null @@ -1 +0,0 @@ - diff --git a/radar/2022-03-28/crc.md b/radar/2022-03-28/crc.md new file mode 100644 index 0000000..511f2ae --- /dev/null +++ b/radar/2022-03-28/crc.md @@ -0,0 +1,6 @@ +--- +title: "CRC Games" +ring: assess +quadrant: methods-and-patterns +featured: false +--- diff --git a/radar/2022-03-28/dgs.md b/radar/2022-03-28/dgs.md new file mode 100644 index 0000000..6a29689 --- /dev/null +++ b/radar/2022-03-28/dgs.md @@ -0,0 +1,5 @@ +--- +title: "DGS Framework" +ring: trial +quadrant: tools +--- diff --git a/radar/2022-03-28/evil-user-stories.md b/radar/2022-03-28/evil-user-stories.md new file mode 100644 index 0000000..48a78c6 --- /dev/null +++ b/radar/2022-03-28/evil-user-stories.md @@ -0,0 +1,6 @@ +--- +title: "Evil User Stories" +ring: assess +quadrant: methods-and-patterns +featured: false +--- diff --git a/radar/2022-03-28/groovy.md b/radar/2022-03-28/groovy.md new file mode 100644 index 0000000..82dbf31 --- /dev/null +++ b/radar/2022-03-28/groovy.md @@ -0,0 +1,7 @@ +--- +title: "Groovy" +ring: hold +quadrant: languages-and-frameworks +featured: false +--- + diff --git a/radar/2022-03-28/raml.md b/radar/2022-03-28/raml.md new file mode 100644 index 0000000..4d83d88 --- /dev/null +++ b/radar/2022-03-28/raml.md @@ -0,0 +1,6 @@ +--- +title: "RAML" +ring: hold +quadrant: languages-and-frameworks +featured: false +--- diff --git a/radar/2022-03-28/renovate.md b/radar/2022-03-28/renovate.md new file mode 100644 index 0000000..cb0ab00 --- /dev/null +++ b/radar/2022-03-28/renovate.md @@ -0,0 +1,7 @@ +--- +title: "Renovate" +ring: adopt +quadrant: tools +--- + +At AOE, we rely on [Renovate CLI tool](https://www.npmjs.com/package/renovate/) in the CI pipelines for most of our projects. diff --git a/radar/2022-03-28/rest-assured.md b/radar/2022-03-28/rest-assured.md new file mode 100644 index 0000000..6feb272 --- /dev/null +++ b/radar/2022-03-28/rest-assured.md @@ -0,0 +1,6 @@ +--- +title: "REST Assured" +ring: assess +quadrant: tools +featured: false +--- diff --git a/radar/2022-03-28/sitespeed.md b/radar/2022-03-28/sitespeed.md new file mode 100644 index 0000000..66ae789 --- /dev/null +++ b/radar/2022-03-28/sitespeed.md @@ -0,0 +1,6 @@ +--- +title: "Sitespeed.io" +ring: assess +quadrant: tools +featured: false +--- diff --git a/radar/2022-03-28/sonarqube.md b/radar/2022-03-28/sonarqube.md new file mode 100644 index 0000000..59aa084 --- /dev/null +++ b/radar/2022-03-28/sonarqube.md @@ -0,0 +1,9 @@ +--- +title: "SonarQube" +ring: adopt +quadrant: tools +--- + +To track code quality of our projects and check for security issues (Static Application Security Testing), we recommend +[SonarQube](https://www.sonarqube.org/). At AOE we use it in CI pipelines to scan our code against the quality gate. If possible we +even check each merge request to prevent degrading code quality before adding it to our code basis. diff --git a/radar/2022-03-28/unleash.md b/radar/2022-03-28/unleash.md new file mode 100644 index 0000000..5e38f89 --- /dev/null +++ b/radar/2022-03-28/unleash.md @@ -0,0 +1,17 @@ +--- +title: "Unleash" +ring: adopt +quadrant: languages-and-frameworks +--- + +[Unleash](https://www.getunleash.io/) is a feature (toggle / flag) management service written in Node.js. +You can enable/disable features independent of deployment schedules. For larger projects with many feature flags +you can benefit from usage statistics and metrics which are collected for each flag. + + + +A lot of activation strategies are provided by Unleash out of the box, like Boolean On/Off, Gradual Rollout, +IPs, and so on, while allowing you to add custom strategies. + +To evaluate the feature flag you can choose one of the [official SDKs](https://docs.getunleash.io/sdks#official-sdks) +or use the [REST-API](https://docs.getunleash.io/api) directly.