remove test files

add overview image
This commit is contained in:
Jan 2024-04-22 08:16:27 +02:00
parent 460b6f4629
commit a9a0078ae9
6 changed files with 38 additions and 9 deletions

2
.order
View file

@ -1,3 +1 @@
README README
Page-one
Page-Two

View file

@ -1 +0,0 @@
second page

View file

@ -1 +0,0 @@
Test page

View file

@ -1,8 +1,7 @@
# JJ's Test Wiki # Engineering Portal
I once was a normal repo. Including all the features. This space is for the engineering team to share knowledge, resources, and best practices.
With linked content in the same wiki. ## Sructure of the repository
- [Page one](/Page-one) ![Engineering Portal Structure](resources/diagrams/engineer-portal-structure.png)
- [Page two](/Page-Two)

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View file

@ -0,0 +1,34 @@
@startuml engineer-portal-structure
skinparam rectangle {
BackgroundColor<<Documentation>> Wheat
BackgroundColor<<Infrastructure>> LightBlue
BackgroundColor<<Applications>> LightGreen
BackgroundColor<<Tools>> LightGrey
BackgroundColor<<CICD>> LightCoral
}
skinparam roundcorner 20
skinparam shadowing false
rectangle "Engineer Portal Structure" as Structure {
rectangle "Documentation Repos" <<Documentation>> {
rectangle "docs-onboarding\n- Welcome\n- Team Structures\n- Dev Environment" as Onboarding
rectangle "docs-agile-working\n- Planning of work\n- Colaboration" as AgileDocs
rectangle "docs-security-policies\n- Compliance\n- Data Policies" as SecurityDocs
}
rectangle "Infrastructure Repos" <<Infrastructure>> {
rectangle "infra-terraform\n- Azure Modules\n- IaC consumer examples" as Terraform
rectangle "infra-ansible\n- Config Management\n- Server Roles" as Ansible
}
rectangle "Application Repos" <<Applications>> {
rectangle "app-python-services\n- Service APIs\n- Data Apps" as PythonApps
rectangle "app-dotnet-apis\n- RESTful APIs\n- Backend Services" as DotnetApps
}
rectangle "Tools & Utilities Repos" <<Tools>> {
rectangle "tools-scripts\n- Utility Scripts\n- Diagnostic Tools" as Scripts
}
rectangle "CI/CD Repos" <<CICD>> {
rectangle "ci-cd-pipelines\n- YAML Definitions\n- Build Configs" as CICD
}
}
@enduml