Application modernisation isn’t a one-time event. It’s a continuous process that requires visibility and tracking. This project aims to provide you with functionality to allow you to understand the modernisation needs and velocity of your organisation.
This project consists of three main components:
infra
): The infrastructure as code for the central framework that will ingest and host the modernisation reportsshipper
): An Azure Function that CI/CD processes can submit modernisation json files toreport
): A Power BI report that provides insights and analytics over submitted modernisation reportsUsing our first party Azure Migration Application Assessment tooling, we want to allow you to build a continuous improvement and visibility approach to technical debt. By putting the assessment at the point of commit and posting the results to a central location you can get an instant view at the repository level or organisation level about modernisation needs. This will allow you to see trends and make decisions on where to focus your improvement efforts.
Use this solution to:
Read more in Getting started
We can run the Azure Migration and Modernisation tooling on the command line to get an understanding of what’s needed in a number of ways including JSON for use later and even a HTML dashboard.
- name: Install appcat
run: dotnet tool install -g dotnet-appcat --version 0.1.107
- name: Run appcat JSON
# This creates the payload for the datalake to give overall visibility of the modernisation effort
run: appcat analyze $ --source folder --report $ --serializer json --non-interactive --code --binaries --target $
- name: Run appcat HTML
# This creates a downloadable html report for this repo for the user to view
run: appcat analyze $ --source folder --report $/html --serializer html --non-interactive --code --binaries --target $
This can be stored as an artifact for instant access by the developers of the repository.
- name: Upload report
uses: actions/upload-artifact@v2
with:
name: modernisation-report
path: $
Finally, we can send the JSON to the shipper API to be stored in the central data lake.
- name: Send report
run: |
response=$(curl -X $ -v \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $" \
--data @$ \
"$")
This repository aims to follow the latest good practices for the Azure and Fabric environments:
More info at Security and authentication
This project is licensed under the MIT License.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.
Please read the Contributing guide to understand how to contribute to this project.