diff --git a/.order b/.order index b3a2157..35527d3 100644 --- a/.order +++ b/.order @@ -1,3 +1 @@ README -Page-one -Page-Two \ No newline at end of file diff --git a/Page-Two.md b/Page-Two.md deleted file mode 100644 index ddc5705..0000000 --- a/Page-Two.md +++ /dev/null @@ -1 +0,0 @@ -second page \ No newline at end of file diff --git a/Page-one.md b/Page-one.md deleted file mode 100644 index e76f72d..0000000 --- a/Page-one.md +++ /dev/null @@ -1 +0,0 @@ -Test page \ No newline at end of file diff --git a/README.md b/README.md index c868ac3..54d47fc 100644 --- a/README.md +++ b/README.md @@ -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) -- [Page two](/Page-Two) +![Engineering Portal Structure](resources/diagrams/engineer-portal-structure.png) diff --git a/resources/diagrams/engineer-portal-structure.png b/resources/diagrams/engineer-portal-structure.png new file mode 100644 index 0000000..bb9ff35 Binary files /dev/null and b/resources/diagrams/engineer-portal-structure.png differ diff --git a/resources/diagrams/engineer-portal-structure.puml b/resources/diagrams/engineer-portal-structure.puml new file mode 100644 index 0000000..232c0b1 --- /dev/null +++ b/resources/diagrams/engineer-portal-structure.puml @@ -0,0 +1,34 @@ +@startuml engineer-portal-structure +skinparam rectangle { + BackgroundColor<> Wheat + BackgroundColor<> LightBlue + BackgroundColor<> LightGreen + BackgroundColor<> LightGrey + BackgroundColor<> LightCoral +} +skinparam roundcorner 20 +skinparam shadowing false + +rectangle "Engineer Portal Structure" as Structure { + rectangle "Documentation Repos" <> { + 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" <> { + 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" <> { + 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" <> { + rectangle "tools-scripts\n- Utility Scripts\n- Diagnostic Tools" as Scripts + } + rectangle "CI/CD Repos" <> { + rectangle "ci-cd-pipelines\n- YAML Definitions\n- Build Configs" as CICD + } +} + +@enduml \ No newline at end of file