-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from RedMadRobot/feature/aoe-update-4.3.0
Update to AOE Technology Radar 4.3.0
- Loading branch information
Showing
52 changed files
with
265 additions
and
16,354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,27 +5,40 @@ on: | |
branches: | ||
- main | ||
|
||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
|
||
jobs: | ||
build: | ||
env: | ||
REACT_APP_RADAR_NAME: 'RMR Technology Radar' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "lts/*" | ||
- run: npm ci | ||
|
||
- name: Pre-build | ||
run: script/addEditLinks.py | ||
- run: npm ci | ||
|
||
- name: Build 🔧 | ||
run: PUBLIC_URL=/techradar-android npm run build:static | ||
- name: Build 🔧 | ||
run: npm run build | ||
|
||
- name: Deploy 🚀 | ||
uses: JamesIves/github-pages-[email protected] | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
BRANCH: gh-pages | ||
FOLDER: build | ||
CLEAN: true | ||
path: ./build | ||
|
||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages 🚀 | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ yarn-error.log | |
aoe_technology_radar.iml | ||
build | ||
techradar | ||
techradar-android | ||
.techradar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Как использовать технологический радар | ||
|
||
Радар представляет собой обзор технологий, которые могут быть интересны любому члену команды. | ||
|
||
Его цель - служить руководством для ежедневной работы роботов. На его основе можно принимать более обоснованные и взвешенные решения. | ||
|
||
## Вклад в технологический радар RMR | ||
|
||
Материалы и исходный код тех. радара находятся на [GitHub](https://github.com/RedMadRobot/techradar-android/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
{ | ||
"basePath": "/techradar-android", | ||
"baseUrl": "https://redmadrobot.github.io/techradar-android", | ||
"editUrl": "https://github.dev/RedMadRobot/techradar-android/blob/main/radar/{release}/{id}.md", | ||
"logoFile": "logo.svg", | ||
"toggles": { | ||
"showChart": true, | ||
"showTagFilter": true, | ||
"showQuadrantList": true, | ||
"showEmptyRings": false | ||
}, | ||
"sections": ["radar", "tags", "list"], | ||
"colors": { | ||
"foreground": "#faf5fa", | ||
"background": "#0C0C0C", | ||
"highlight": "#d90015", | ||
"content": "rgba(88, 88, 88, 0.2)", | ||
"text": "#f2f5fa", | ||
"link": "#c30011", | ||
"border": "rgb(255, 16, 41, 0.8)", | ||
"tag": "rgba(88, 88, 88, 0.6)" | ||
}, | ||
"quadrants": [ | ||
{ | ||
"id": "libraries", | ||
"title": "Libraries", | ||
"description": "Сюда попадают библиотеки, полезные для реализации ПО.", | ||
"color": "#84BFA4" | ||
}, | ||
{ | ||
"id": "methods-and-patterns", | ||
"title": "Methods & Patterns", | ||
"description": "Паттерны и подходы очень важны, т.к. многие из них оказывают большее и продолжительное влияние на проекты. В эту категорию попадает информация о методах и паттернах, касающихся разработки, сontinuous X, тестировании, организации, архитектуре и т.д.", | ||
"color": "#248EA6" | ||
}, | ||
{ | ||
"id": "languages-and-frameworks", | ||
"title": "Languages & Frameworks", | ||
"description": "Языки и фреймворки которые используют роботы.", | ||
"color": "#F25244" | ||
}, | ||
{ | ||
"id": "utilities", | ||
"title": "Utilities", | ||
"description": "Здесь мы размещаем различные программные инструменты - от небольших утилит до более крупных программных проектов.", | ||
"color": "#40713f" | ||
} | ||
], | ||
"rings": [ | ||
{ | ||
"id": "adopt", | ||
"title": "Adopt", | ||
"description": "", | ||
"color": "#5cb449", | ||
"radius": 0.5, | ||
"strokeWidth": 5 | ||
}, | ||
{ | ||
"id": "trial", | ||
"title": "Trial", | ||
"description": "", | ||
"color": "#faa03d", | ||
"radius": 0.69, | ||
"strokeWidth": 3 | ||
}, | ||
{ | ||
"id": "assess", | ||
"title": "Assess", | ||
"description": "", | ||
"color": "#029df7", | ||
"radius": 0.85, | ||
"strokeWidth": 2 | ||
}, | ||
{ | ||
"id": "hold", | ||
"title": "Hold", | ||
"description": "", | ||
"color": "#688190", | ||
"radius": 1, | ||
"strokeWidth": 0.75 | ||
} | ||
], | ||
"flags": { | ||
"new": { | ||
"color": "#f1235a", | ||
"title": "New", | ||
"titleShort": "N", | ||
"description": "New in this version" | ||
}, | ||
"changed": { | ||
"color": "#40a7d1", | ||
"title": "Changed", | ||
"titleShort": "C", | ||
"description": "Recently changed" | ||
}, | ||
"default": { | ||
"description": "Unchanged" | ||
} | ||
}, | ||
"chart": { | ||
"size": 800, | ||
"blipSize": 12 | ||
}, | ||
"social": [ | ||
{ | ||
"href": "https://www.instagram.com/red_mad_robot", | ||
"icon": "instagram" | ||
}, | ||
{ | ||
"href": "https://www.youtube.com/channel/UCNsKb10vKvLCx3C0Yijmp0w", | ||
"icon": "youtube" | ||
}, | ||
{ | ||
"href": "https://github.com/RedMadRobot", | ||
"icon": "github" | ||
} | ||
], | ||
"imprint": "", | ||
"labels": { | ||
"title": "RedMad Technology Radar", | ||
"imprint": "", | ||
"quadrant": "Quadrant", | ||
"quadrantOverview": "Обзор", | ||
"zoomIn": "Увеличить", | ||
"filterByTag": "Сортировать по тэгу", | ||
"footer": "Роботы помогают людям запускать цифровые сервисы в финтехе, телекоме, банках, ритейле, страховании, e-commerce, медицине и промышленности. Мы пишем код, проектируем удобные интерфейсы, исследуем и анализируем рынки, пользователей и конкурентов, находим и тестируем гипотезы, запускаем MVP, трансформируем бизнес-процессы и докапываемся до самой сути.", | ||
"notUpdated": "Этот пункт не обновлялся в трех последних версиях Радара", | ||
"notFound": "404 - Congrats. You broke it.", | ||
"pageAbout": "Что такое тех радар", | ||
"pageOverview": "Обзор технологий", | ||
"pageSearch": "Поиск", | ||
"searchPlaceholder": "Что ищете?", | ||
"metaDescription": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
h1, | ||
h2, | ||
h3 { | ||
font-family: "Fira code" , Roboto, Montserrat, "Times New Roman", Times, Baskerville, Georgia, serif; | ||
} |
Oops, something went wrong.