Skip to content

Commit

Permalink
feat: tech radar (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabrizioCafolla authored Oct 23, 2023
1 parent 0a4a933 commit f58cb80
Show file tree
Hide file tree
Showing 4 changed files with 1,368 additions and 357 deletions.
68 changes: 67 additions & 1 deletion docs/organization/tech-radar.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,70 @@ id: tech-radar
title: Tech Radar
---

Working in progress...
import TechRadar from '@site/src/components/tech/TechRadar';

export const quadrants = [
{
quadrant: 0,
name: "Languages & Frameworks",
entries: [
{ ring: 0, label: "TypeScript", active: true, moved: 0 },
{ ring: 0, label: "Python", active: true, moved: 0 },
{ ring: 0, label: "GraphQL", active: true, moved: 0 },
{ ring: 0, label: "JavaScript", active: true, moved: 0 },
{ ring: 0, label: "SQL", active: true, moved: 0 },
{ ring: 0, label: "bash", active: true, moved: 0 },
{ ring: 0, label: "Next.js", active: true, moved: 0 },
{ ring: 0, label: "Node.js", active: true, moved: 0 },
],
},
{
quadrant: 1,
name: "Platforms & Infrastructure",
entries: [
{ ring: 0, label: "Docker", active: true, moved: 0 },
{ ring: 1, label: "Google Cloud Platform", active: true, moved: 0 },
{ ring: 1, label: "Docusaurus", active: true, moved: 0 },
{ ring: 0, label: "Amazon Web Services", active: true, moved: 0 },
],
},
{
quadrant: 2,
name: "Data Management & Storage",
entries: [
{ ring: 0, label: "dbt", active: true, moved: 0 },
{ ring: 0, label: "Google BigQuery", active: true, moved: 0 },
{ ring: 0, label: "AWS DynamoDB", active: true, moved: 0 },
{ ring: 0, label: "AWS S3", active: true, moved: 0 },
{ ring: 0, label: "AWS SQS", active: true, moved: 0 },
{ ring: 0, label: "Apache Airflow", active: true, moved: 1 },
{ ring: 2, label: "Streamlit", active: true, moved: 0 },
{ ring: 0, label: "MySQL", active: true, moved: 0 },
{ ring: 0, label: "PostgreSQL", active: true, moved: 0 },
],
},
{
quadrant: 3,
name: "Tools",
entries: [
{ ring: 0, label: "ReTool", active: true, moved: 1 },
{ ring: 0, label: "Supabase", active: true, moved: 1 },
{ ring: 0, label: "AWS CDK", active: true, moved: 0 },
{ ring: 0, label: "GitHub Actions", active: true, moved: 0 },
{ ring: 1, label: "Task", active: true, moved: 0 },
{ ring: 1, label: "NewRelic", active: true, moved: 0 },
{ ring: 0, label: "Nginx", active: true, moved: 0 },
],
},
];


export const entries = quadrants.reduce((acc, quadrant) => {
// add quadrant number to each entry
quadrant.entries.forEach(entry => {
entry.quadrant = quadrant.quadrant
})
return acc.concat(quadrant.entries)
}, [])

<TechRadar entries={entries} />
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@docusaurus/preset-classic": "2.4.3",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.2.1",
"d3": "^4.0.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
Expand Down
Loading

0 comments on commit f58cb80

Please sign in to comment.