├── .github ├── scripts │ └── sync-configurable-files.ps1 ├── sync-config.yml └── workflows │ ├── claude-code-review.yml │ ├── claude.yml │ ├── sync-configurable-files.md │ ├── sync-configurable-files.yml │ ├── timewarp-architecture-documentation.yml │ └── timewarp-architecture.yml ├── .gitignore ├── .idea ├── .idea.timewarp-architecture.dir │ └── .idea │ │ ├── .gitignore │ │ └── vcs.xml └── vcs.xml ├── .mailmap ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CLAUDE.md ├── README.md ├── TimeWarp.Architecture ├── .agent │ └── workspace │ │ └── overview.md ├── .ai │ ├── 00-confirmation.md │ ├── 01-user.md │ ├── 02-development-process.md │ ├── 03-environment.md │ ├── Overview.md │ ├── ProjectSage │ │ └── Overview.md │ └── other │ │ ├── blog.md │ │ ├── create-prompt.md │ │ ├── nugets.md │ │ ├── project-structure.md │ │ ├── references.md │ │ ├── shell-commands.md │ │ └── tools.md ├── .clinerules ├── .config │ └── dotnet-tools.json ├── .devcontainer │ ├── Dockerfile │ ├── README.md │ ├── devcontainer.json │ ├── init-firewall.sh │ ├── post-create.sh │ ├── test-container.sh │ └── validate-container.sh ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github │ ├── issue_template │ │ ├── ai_agent_task.yml │ │ ├── bug_report.yml │ │ └── feature_request.yml │ ├── scripts │ │ └── sync-configurable-files.ps1 │ ├── sync-config.yml.disabled │ ├── workflow-templates │ │ └── api-server.properties.json │ └── workflows │ │ ├── claude-code-review.yml.disabled │ │ ├── claude.yml.disabled │ │ ├── sync-configurable-files.md │ │ ├── sync-configurable-files.yml.disabled │ │ └── test-sync.yml ├── .gitignore ├── .mailmap ├── .rooignore ├── .template.config │ ├── icon.png │ └── template.json ├── .vscode │ ├── launch.json │ └── settings.json ├── ApiDependencies.dgml ├── Assets │ └── Overview.md ├── Build.ps1 ├── CSS Bundle Hash Management in Blazor with Tailwind.md ├── Claude.md ├── DevOps │ ├── Bicep │ │ ├── Overview.md │ │ ├── deprovision.ps1 │ │ ├── main.bicep │ │ ├── modules │ │ │ ├── Authorization │ │ │ │ ├── cli.bicep │ │ │ │ ├── role.bicep │ │ │ │ ├── roles.bicep │ │ │ │ ├── rolesacr.bicep │ │ │ │ └── rolesapp.bicep │ │ │ ├── aks.bicep │ │ │ ├── app_Configuration.bicep │ │ │ ├── container_registry.bicep │ │ │ ├── cosmos_db.bicep │ │ │ └── key_vault.bicep │ │ ├── provision.ps1 │ │ ├── subscription.bicep │ │ ├── validate.ps1 │ │ └── what-if.ps1 │ ├── Docker │ │ ├── BuildImages.ps1 │ │ ├── Overview.md │ │ ├── docker-compose.yaml │ │ └── timewarp.software.dockerfile │ ├── Kubernetes │ │ ├── 0_Namespaces │ │ │ ├── namespace.ps1 │ │ │ └── namespace.yaml │ │ ├── 1_Nodes │ │ │ └── .gitkeep │ │ ├── 2_Workloads │ │ │ ├── Deployments │ │ │ │ ├── api-server │ │ │ │ │ ├── api_server-deployment.ps1 │ │ │ │ │ └── api_server-deployment.yaml │ │ │ │ ├── grpc-server │ │ │ │ │ ├── grpc_server-deployment.ps1 │ │ │ │ │ └── grpc_server-deployment.yaml │ │ │ │ ├── web-server │ │ │ │ │ ├── web_server-deployment.ps1 │ │ │ │ │ └── web_server-deployment.yaml │ │ │ │ └── yarp │ │ │ │ │ ├── yarp-deployment.ps1 │ │ │ │ │ └── yarp-deployment.yaml │ │ │ └── Pods │ │ │ │ └── .gitkeep │ │ ├── 3_Network │ │ │ ├── Ingress │ │ │ │ ├── .gitkeep │ │ │ │ ├── grpc_ingress.yaml │ │ │ │ ├── ingress.ps1 │ │ │ │ └── web_ingress.yaml │ │ │ └── Services │ │ │ │ ├── api-server │ │ │ │ ├── api_server-service.ps1 │ │ │ │ └── api_server-service.yaml │ │ │ │ ├── grpc-server │ │ │ │ ├── grpc_server-service.ps1 │ │ │ │ └── grpc_server-service.yaml │ │ │ │ ├── web-server │ │ │ │ ├── web_server-service.ps1 │ │ │ │ └── web_server-service.yaml │ │ │ │ └── yarp │ │ │ │ ├── yarp-service.ps1 │ │ │ │ └── yarp-service.yaml │ │ ├── 4_Storage │ │ │ ├── Persistent_Volume_Claims │ │ │ │ ├── .gitkeep │ │ │ │ ├── api_server-persistent_volume_claim.ps1 │ │ │ │ └── api_server-persistent_volume_claim.yaml │ │ │ ├── Persistent_Volumes │ │ │ │ └── .gitkeep │ │ │ └── Storage_Classes │ │ │ │ ├── .gitkeep │ │ │ │ ├── deploy_storage_classes.ps1 │ │ │ │ └── managed_premium_retain-storage_class.yaml │ │ ├── 5_Configuration │ │ │ └── .gitkeep │ │ ├── 6_Custom_Resources │ │ │ └── .gitkeep │ │ ├── 7_Helm_Releases │ │ │ ├── .gitkeep │ │ │ ├── deploy-nginx-ingress-controller.ps1 │ │ │ └── import-helm-charts-to-acr.ps1 │ │ ├── Deploy.md │ │ ├── Overview.md │ │ ├── PowerShell │ │ │ └── TimeWarp.Charts │ │ │ │ ├── Apply-Manifest.ps1 │ │ │ │ ├── Deploy-Server.ps1 │ │ │ │ └── TimeWarp.Charts.psm1 │ │ └── deploy.ps1 │ ├── Model.mdj │ ├── Overview.md │ ├── Pipelines │ │ ├── Overview.md │ │ └── timewarp.software.com │ │ │ ├── Overview.md │ │ │ ├── Templates │ │ │ ├── build.yaml │ │ │ └── deploy.yaml │ │ │ └── timewarp.software.yaml │ ├── Ports.md │ ├── Pulumi │ │ ├── Infrastructure │ │ │ └── Overview.md │ │ └── Overview.md │ ├── deprovision.ps1 │ ├── provision-build-deploy.ps1 │ ├── rollout-restart-all.ps1 │ └── variables.ps1 ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Documentation │ ├── C4 │ │ ├── .structurizr │ │ │ ├── eula.properties │ │ │ └── images │ │ │ │ ├── Diagram1-thumbnail.png │ │ │ │ └── thumbnail.png │ │ ├── Overview.md │ │ ├── docs │ │ │ └── 01-context.md │ │ ├── workspace.dsl │ │ └── workspace.json │ ├── Developer │ │ ├── Conceptual │ │ │ ├── ApiDesign.md │ │ │ ├── ArchitecturalDecisionRecords │ │ │ │ ├── Approved │ │ │ │ │ ├── 0000-use-markdown-architectural-decision-records.md │ │ │ │ │ ├── 0001-entity-class-region-naming-and-usage.md │ │ │ │ │ ├── 0002-assembly-identification-with-assembly-marker.md │ │ │ │ │ ├── 0003-endpoint-centric-api-with-interface-based-validation.md │ │ │ │ │ ├── 0004-branch-naming-conventions.md │ │ │ │ │ ├── 0005-git-merge-strategy.md │ │ │ │ │ ├── 0006-kanban-development-process.md │ │ │ │ │ └── Overview.md │ │ │ │ ├── Examples │ │ │ │ │ ├── 0001-use-CC0-as-license.md │ │ │ │ │ ├── 0002-do-not-use-numbers-in-headings.md │ │ │ │ │ ├── 0003-include-in-adr-tools.md │ │ │ │ │ ├── 0004-write-own-toc-tool.md │ │ │ │ │ ├── 0005-use-dashes-in-filenames.md │ │ │ │ │ ├── 0006-use-names-as-identifier.md │ │ │ │ │ ├── 0007-do-not-emphasize-line-headings.md │ │ │ │ │ ├── 0008-add-status-field.md │ │ │ │ │ ├── 0009-support-links-between-adrs-inside-an-adrs.md │ │ │ │ │ ├── 0010-support-categories.md │ │ │ │ │ ├── 0011-use-asterisk-as-list-marker.md │ │ │ │ │ ├── 0012-use-curly-brackets-to-denote-placeholder.md │ │ │ │ │ └── Overview.md │ │ │ │ ├── Overview.md │ │ │ │ ├── ProjectStructureAndConventions │ │ │ │ │ ├── Overview.md │ │ │ │ │ ├── ProjectStructureAndConventions.md │ │ │ │ │ ├── ai-context-test.md │ │ │ │ │ └── ai-context.yaml │ │ │ │ ├── Proposed │ │ │ │ │ ├── Overview.md │ │ │ │ │ ├── xxx.md │ │ │ │ │ └── xxxx-powershell-coding-standards.md │ │ │ │ └── adr-template.md │ │ │ ├── ComponentNamingAndOrganization.md │ │ │ ├── Contribute.md │ │ │ ├── DirectoryStructure.md │ │ │ ├── Features │ │ │ │ ├── Application │ │ │ │ │ └── IsProcessing.md │ │ │ │ └── Overview.md │ │ │ ├── Model.mdj │ │ │ ├── Overview.md │ │ │ └── Testing │ │ │ │ ├── EndToEndTesting.md │ │ │ │ ├── IntegrationTesting.md │ │ │ │ └── Overview.md │ │ ├── HowToGuides │ │ │ ├── HowToBuildUIWithFluentUIAndTailwind.md │ │ │ ├── HowToGetAllContentsInDirectoryRecursively.md │ │ │ ├── HowToPreventLocalCommitsToMaster.md │ │ │ ├── HowToRenameDefaultBranchFromMainToMaster.md │ │ │ ├── HowToRunOaktonCommands.md │ │ │ ├── HowToTrustAspNetDevCertificateWhenUsingWSL.md │ │ │ ├── Overview.md │ │ │ ├── Testing │ │ │ │ ├── HowToAddLifecyclesToTests.md │ │ │ │ ├── HowToFilterTestsByName.md │ │ │ │ ├── HowToFilterTestsByTags.md │ │ │ │ └── HowToWriteEndpointTest.md │ │ │ └── WebApiContracts │ │ │ │ ├── Handling_Mutability_in_API_Contracts.md │ │ │ │ ├── Handling_Nullability_in_API_Contracts.md │ │ │ │ ├── HowToWrite_BFF_API_Contracts.md │ │ │ │ └── Overview.md │ │ ├── Overview.md │ │ ├── Reference │ │ │ ├── ApiEndpointSourceGenerator.md │ │ │ ├── CsharpCodingStandards.md │ │ │ ├── DotnetConventions.md │ │ │ ├── Overview.md │ │ │ ├── dependencies-with-nuget.puml │ │ │ └── dependencies.puml │ │ └── Tutorials │ │ │ └── Overview.md │ ├── Overview.md │ ├── ReleaseNotes.md │ ├── Roadmap.md │ ├── StarUml │ │ ├── ArchitectureComparisons.mdj │ │ └── Generated │ │ │ └── html-docs │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── jquery.bonsai.css │ │ │ │ └── main.css │ │ │ ├── icon-font │ │ │ │ ├── icons.css │ │ │ │ ├── icons.eot │ │ │ │ ├── icons.html │ │ │ │ ├── icons.ttf │ │ │ │ └── icons.woff │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── imageMapResizer.min.js │ │ │ │ ├── jquery-2.1.0.min.js │ │ │ │ ├── jquery.bonsai.js │ │ │ │ └── less-1.7.0.min.js │ │ │ ├── contents │ │ │ ├── 002633b941443d12545e89ffff217758.html │ │ │ ├── 18a60ff8053847a6e54d3f6d09616fd2.html │ │ │ ├── 1b8651032bdcfcf594d3126042f6808a.html │ │ │ ├── 201db76e8bb620490016caa11834ac95.html │ │ │ ├── 22ab7808eb87af92049a9ef45db6a088.html │ │ │ ├── 25dca8ac7f49d06b83b6ce24cae24c20.html │ │ │ ├── 2c87689fb4536c6b9f84b595273f3657.html │ │ │ ├── 38c90ec51adec2b6d5f21b7ee8292d6e.html │ │ │ ├── 3b21febca8d134a0dd8db2c0604c41c0.html │ │ │ ├── 4f767aae76d7fc1963ecfedff1a71f85.html │ │ │ ├── 50f743d79d75496d3381e1f48d408d66.html │ │ │ ├── 51b8d3f6ad27402094908cc51102d86b.html │ │ │ ├── 58109ab418547287398687aa352208dd.html │ │ │ ├── 594af663de577680f35b13183109d675.html │ │ │ ├── 672adca99a3ee25dd548ecbd51711121.html │ │ │ ├── 69c9733fdc7b28751eb759f6b3c1d61b.html │ │ │ ├── 6a7c2018ead7002ca4d38b828370383e.html │ │ │ ├── 73ef79d5cb1219a9fa81ea65e70ddf15.html │ │ │ ├── 7a6185f9e0c3351d05e64ec6eaf1bfd0.html │ │ │ ├── 82c007bed94bce852a3f186920c6c5ab.html │ │ │ ├── 877356ba6361648e29e9073a32d7a2b3.html │ │ │ ├── 879f2bd5b38857c136c4985425cd41d0.html │ │ │ ├── 8f51549223e67ea579010a05c39c7d62.html │ │ │ ├── 94a79fce730c1ff3c8d72368efca4c57.html │ │ │ ├── 95d6a093ffd0525e4b4b104e0cb12d79.html │ │ │ ├── 9cc11865e67cee15bbff32c608fe8f91.html │ │ │ ├── 9cd4c5b3573e1ebcd0ef68a0219a8981.html │ │ │ ├── a2de6ba9a52802183efc490ad37356f8.html │ │ │ ├── a74bf0e3699da3f8e58beeb19b53e20a.html │ │ │ ├── a9720e20ebb00ac9b7ad524107394ecc.html │ │ │ ├── b487f4391a759a6d43f560611100fd1c.html │ │ │ ├── bd592a8d872b27356db4be39287b286d.html │ │ │ ├── bf2526124725a84904a394ff98066fb1.html │ │ │ ├── bf2bb6e57fc87c19377920c8e24e263b.html │ │ │ ├── c20b163d9bb3c64c1f38ac37f2130637.html │ │ │ ├── c7b720746aa7697e18e599cdeda4dbca.html │ │ │ ├── cacf3ce389eb66206ec5de4a8c2d3e88.html │ │ │ ├── cf9c8b720f3815adeccaf3ef6e48c6c4.html │ │ │ ├── d0a9376d45106f16dafb49fa035efd5c.html │ │ │ ├── d8698dcc848cb9deb27aa87fda841433.html │ │ │ ├── dd96b98c545c7e5072beabd523f43082.html │ │ │ ├── df4cba6e7cf0221e084cce2ad8290f91.html │ │ │ ├── diagrams.html │ │ │ ├── e04099bf2d4de49ab913037e9150166c.html │ │ │ ├── element_index.html │ │ │ └── navigation.html │ │ │ ├── diagrams │ │ │ ├── 002633b941443d12545e89ffff217758.svg │ │ │ ├── 22ab7808eb87af92049a9ef45db6a088.svg │ │ │ ├── 8f51549223e67ea579010a05c39c7d62.svg │ │ │ └── a74bf0e3699da3f8e58beeb19b53e20a.svg │ │ │ └── index.html │ ├── TestStructure.md │ ├── Tools.md │ └── User │ │ └── Overview.md ├── FixAnalyzerDebug.reg ├── Kanban │ ├── Done │ │ ├── 001_Fix-FastEndpointSourceGenerator.md │ │ ├── 001_NavLink-Encapsulation-Implementation.md │ │ ├── 002_TimeWarpNavLink-component.md │ │ ├── 003_Add-Authentication-Support-To-TimeWarpNavLink.md │ │ ├── 004_001_convert-weatherforecast-to-fastendpoints.md │ │ ├── 004_002_remove-mediatr-from-api.md │ │ ├── 004_003_implement-openapi-and-scalar.md │ │ ├── 006_Implement-Endpoint-Source-Generator.md │ │ ├── 009_Fix-OneOf-Serialization-WeatherForecast.md │ │ ├── 012_Expand-RunTests-Script.md │ │ ├── 013_Create-TimeWarp-Automation-Contracts.md │ │ ├── 014_Implement-RunApplication.md │ │ ├── 015_Implement-RunWindowsApplication-Command.md │ │ ├── 016_Remove-06-NewFileTemplates.md │ │ ├── 017_Rename-Readme-to-Overview.md │ │ ├── 018_Sync-Configurable-Files-from-Parent-Repo.md │ │ ├── 022_Update-GitIgnore-To-Support-Merge-Strategy.md │ │ ├── 023_Create-Architectural-Decision-Records.md │ │ ├── 024_Migrate-To-Hybrid-Task-Management.md │ │ ├── 025_Create-File-Naming-Convention-Analysis-Report │ │ │ ├── File-Naming-Convention-Analysis-Report.md │ │ │ └── Task.md │ │ ├── 029_Create-Directory-Naming-Convention-Analysis-Report │ │ │ ├── Components-Directory-Structure-Analysis.md │ │ │ ├── Critical-Directory-Naming-Analysis.md │ │ │ ├── Directory-Naming-Convention-Analysis-Report.md │ │ │ ├── Fresh-Directory-Naming-Convention-Analysis-Report.md │ │ │ └── Task.md │ │ ├── 030_Fix-Web-Spa-TypeScript-Directory-Naming.md │ │ ├── 031_Fix-Assembly-Marker-Inconsistency.md │ │ ├── 033_Fix-Api-Contracts-Directory-Naming-And-Semantics.md │ │ ├── 036_Fix-Directory-Build-Props-Linux-DateTime-Issue.md │ │ ├── 037_Migrate-From-MediatR-To-TimeWarp-Mediator.md │ │ ├── 039_Migrate-From-FluentAssertions-To-Shouldly.md │ │ ├── 043_Remove-AutoMapper-Document-Mapperly.md │ │ └── Overview.md │ ├── InProgress │ │ ├── 004_migrate-api-to-fastendpoints.md │ │ ├── 005_Create-Simplified-WeatherForecast-Endpoint.md │ │ ├── 007_Fix-Source-Generator-Output-Location.md │ │ ├── 011_Create-TimeWarp-Automation-Library.md │ │ ├── 019_Enhance-Sync-Config-With-Advanced-Features.md │ │ ├── 038_Build-Dev-Container-For-Claude-Code.md │ │ ├── 041_Methodically-Update-NuGet-Packages.md │ │ ├── 042_Migrate-From-Swashbuckle-To-Scalar.md │ │ ├── 044_Remove-Hungarian-A-Prefix-From-Parameters.md │ │ └── Overview.md │ ├── Overview.md │ ├── Task-Template.md │ ├── TaskExamples │ │ └── ToastNotification-UserStory-Example.md │ └── ToDo │ │ ├── 008_Create-FastEndpointSourceGenerator-Tests.md │ │ ├── 010_Fix-SpaTestApplication-ConfigureServices.md │ │ ├── 020_Create-TimeWarp-Tool-And-Migrate-Sync-Script.md │ │ ├── 026_Fix-Critical-Kanban-Inconsistencies.md │ │ ├── 027_Create-File-Naming-Convention-ADR-And-Documentation.md │ │ ├── 028_Implement-Automated-Naming-Convention-Checks.md │ │ ├── 034_Review-DevOps-Folder-Relevance-And-Modernization.md │ │ ├── 035_Create-Directory-Naming-Convention-ADR.md │ │ ├── 040_Configure-Aspire-Test-Host-Api-Server.md │ │ └── Overview.md ├── NpmOutdated.ps1 ├── NuGet.config ├── Priority-Analysis-Report.md ├── ReadMe.md ├── Run.ps1 ├── RunDocker.ps1 ├── RunNpmInstall.ps1 ├── RunRelease.ps1 ├── RunTailwind.ps1 ├── RunTests.ps1 ├── Samples │ └── Overview.md ├── Scripts │ ├── BuildDependencyDiagram.ps1 │ ├── Describe.ps1 │ ├── Get-NextTaskNumber.ps1 │ ├── Git │ │ ├── CountLinesByAuthor.ps1 │ │ ├── Stats.ps1 │ │ └── SummarizeGitBlame.ps1 │ ├── Overview.md │ ├── Postgres │ │ ├── Add-Migration.ps1 │ │ ├── Drop-Database.ps1 │ │ ├── EfSharedVariables.ps1 │ │ ├── Overview.md │ │ ├── Reset-DatabaseMigrations.ps1 │ │ └── Update-Database.ps1 │ ├── RunCosmosDbEmulator.ps1 │ ├── Windows │ │ └── EnableLongPaths.ps1 │ └── profile.ps1 ├── Source │ ├── Analyzers │ │ ├── TimeWarp.Architecture.Analyzers │ │ │ ├── AnalyzerReleases.Shipped.md │ │ │ ├── AnalyzerReleases.Unshipped.md │ │ │ ├── AssemblyMarker.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── PartialClassDeclarationAnalyzer.cs │ │ │ ├── PartialClassDeclarationAnalyzer.md │ │ │ └── TimeWarp.Architecture.Analyzers.csproj │ │ ├── TimeWarp.Architecture.Attributes │ │ │ ├── .idea │ │ │ │ └── .idea.TimeWarp.Architecture.dir │ │ │ │ │ └── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .name │ │ │ │ │ ├── indexLayout.xml │ │ │ │ │ └── vcs.xml │ │ │ ├── ApiEndpointAttribute.cs │ │ │ ├── AssemblyMarker.cs │ │ │ └── TimeWarp.Architecture.Attributes.csproj │ │ └── TimeWarp.Architecture.SourceGenerator │ │ │ ├── AnalyzerReleases.Shipped.md │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Diagnostics │ │ │ └── DiagnosticDescriptors.cs │ │ │ ├── FastEndpointSourceGenerator.cs │ │ │ ├── FastEndpointSourceGenerator.md │ │ │ ├── GlobalUsings.cs │ │ │ ├── Helpers │ │ │ └── StringExtensions.cs │ │ │ ├── Models │ │ │ └── EndpointMetadata.cs │ │ │ ├── Properties │ │ │ └── launchsettings.json │ │ │ ├── TimeWarp.Architecture.SourceGenerator.csproj │ │ │ └── Validation │ │ │ └── RouteRegistry.cs │ ├── Common │ │ ├── Common.Application │ │ │ ├── Abstractions │ │ │ │ ├── ICurrenUserService.cs │ │ │ │ └── IDateTimeService.cs │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Common.Application.csproj │ │ │ └── GlobalUsings.cs │ │ ├── Common.Contracts │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Base │ │ │ │ ├── ApiRequestExtensions.cs │ │ │ │ ├── BaseMessage.cs │ │ │ │ ├── BasePagedRequest.cs │ │ │ │ ├── BaseRequest.cs │ │ │ │ ├── BaseResponse.cs │ │ │ │ ├── HttpVerb.cs │ │ │ │ ├── IApiRequest.cs │ │ │ │ ├── IAuthApiRequest.cs │ │ │ │ ├── IBaseMessage.cs │ │ │ │ ├── IBaseRequest.cs │ │ │ │ ├── IOpenDataQueryParameters.cs │ │ │ │ ├── IQueryStringRouteProvider.cs │ │ │ │ └── ListResponse.cs │ │ │ ├── Behaviors │ │ │ │ └── FluentValidationBehavior.cs │ │ │ ├── Common.Contracts.csproj │ │ │ ├── Configuration │ │ │ │ └── ServiceNames.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── Mixins │ │ │ │ ├── IAuthApiRequestMixin.md │ │ │ │ ├── IAuthApiRequestMixin.mixin │ │ │ │ ├── IOpenDataQueryParametersMixin.md │ │ │ │ ├── IOpenDataQueryParametersMixin.mixin │ │ │ │ ├── IQueryStringRouteProviderMixin.md │ │ │ │ ├── IQueryStringRouteProviderMixin.mixin │ │ │ │ ├── RouteMixin.md │ │ │ │ └── RouteMixin.mixin │ │ │ ├── Services │ │ │ │ └── IApiService.cs │ │ │ ├── Types │ │ │ │ ├── FileResponse.cs │ │ │ │ ├── MockResponseFactory.cs │ │ │ │ └── SharedProblemDetails.cs │ │ │ └── Validators │ │ │ │ └── PhoneNumberValidator.cs │ │ ├── Common.Domain │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Common.Domain.csproj │ │ │ ├── Entities │ │ │ │ └── Base │ │ │ │ │ ├── BaseEntity.cs │ │ │ │ │ ├── BaseEvent.cs │ │ │ │ │ └── ValueObject.cs │ │ │ ├── Enumeration │ │ │ │ └── Enumeration.cs │ │ │ └── GlobalUsings.cs │ │ ├── Common.Infrastructure │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Common.Infrastructure.csproj │ │ │ ├── Common_Infrastructure_Module.cs │ │ │ ├── GlobalUsings.cs │ │ │ └── Services │ │ │ │ ├── CurrentUserService.cs │ │ │ │ └── DateTimeService.cs │ │ └── Common.Server │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Base │ │ │ ├── BaseEndpoint.cs │ │ │ └── BaseFastEndpoint.cs │ │ │ ├── Common.Server.csproj │ │ │ ├── CommonServerModule.cs │ │ │ ├── CorsPolicy │ │ │ ├── CorsPolicies │ │ │ │ ├── AnyPolicy.cs │ │ │ │ └── ExamplePolicy.cs │ │ │ └── CorsPolicy.cs │ │ │ ├── Extensions │ │ │ ├── MvcBuilderExtensions.cs │ │ │ └── ServiceUriHelper.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── IAspNetModule.cs │ │ │ └── IAspNetProgram.cs │ ├── ContainerApps │ │ ├── Api │ │ │ ├── Api.Application │ │ │ │ ├── Api.Application.csproj │ │ │ │ ├── ApiApplicationModule.cs │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Features │ │ │ │ │ └── WeatherForecast │ │ │ │ │ │ └── GetWeatherForecastsHandler.cs │ │ │ │ └── GlobalUsings.cs │ │ │ ├── Api.Contracts │ │ │ │ ├── Api.Contracts.csproj │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Features │ │ │ │ │ └── WeatherForecast │ │ │ │ │ │ ├── FeatureAnnotations.cs │ │ │ │ │ │ └── Queries │ │ │ │ │ │ └── GetWeatherForecasts.cs │ │ │ │ └── GlobalUsings.cs │ │ │ ├── Api.Domain │ │ │ │ ├── Api.Domain.csproj │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ └── GlobalUsings.cs │ │ │ ├── Api.Infrastructure │ │ │ │ ├── Api.Infrastructure.csproj │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ └── GlobalUsings.cs │ │ │ └── Api.Server │ │ │ │ ├── Api.Server.csproj │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Features │ │ │ │ └── Base │ │ │ │ │ ├── BaseError.cs │ │ │ │ │ └── BaseException.cs │ │ │ │ ├── GenericPipelineBehavior.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.Kubernetes_Docker.json │ │ │ │ ├── appsettings.Production.json │ │ │ │ └── appsettings.json │ │ ├── Aspire │ │ │ ├── Aspire.AppHost │ │ │ │ ├── Aspire.AppHost.csproj │ │ │ │ ├── Constants.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── ResourceBuilderExtensions.cs │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ │ └── Aspire.ServiceDefaults │ │ │ │ ├── Aspire.ServiceDefaults.csproj │ │ │ │ ├── Extensions.cs │ │ │ │ └── GlobalUsings.cs │ │ ├── Grpc │ │ │ ├── Grpc.Application │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ └── Grpc.Application.csproj │ │ │ ├── Grpc.Contracts │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Features │ │ │ │ │ ├── Hello │ │ │ │ │ │ ├── HelloRequest.cs │ │ │ │ │ │ ├── HelloResponse.cs │ │ │ │ │ │ └── IHelloService.cs │ │ │ │ │ └── Superhero │ │ │ │ │ │ ├── ISuperheroService.cs │ │ │ │ │ │ ├── SuperheroDto.cs │ │ │ │ │ │ ├── SuperheroRequest.cs │ │ │ │ │ │ └── SuperheroResponse.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ └── Grpc.Contracts.csproj │ │ │ ├── Grpc.Domain │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ └── Grpc.Domain.csproj │ │ │ ├── Grpc.Infrastructure │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ └── Grpc.Infrastructure.csproj │ │ │ └── Grpc.Server │ │ │ │ ├── .filenesting.json │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Features │ │ │ │ ├── Hello │ │ │ │ │ └── HelloService.cs │ │ │ │ └── Superhero │ │ │ │ │ └── SuperheroService.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Grpc.Server.csproj │ │ │ │ ├── HostedServices │ │ │ │ └── ProtobufGenerationHostedService.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ │ ├── Protos │ │ │ │ └── greet.proto │ │ │ │ ├── Services │ │ │ │ └── GreeterService.cs │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.Kubernetes_Docker.json │ │ │ │ ├── appsettings.Production.json │ │ │ │ └── appsettings.json │ │ ├── Overview.md │ │ ├── Web │ │ │ ├── Web.Application │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Features │ │ │ │ │ ├── Analytics │ │ │ │ │ │ └── TrackEvent.Handler.cs │ │ │ │ │ ├── Auth │ │ │ │ │ │ └── GetSignInToken.Handler.cs │ │ │ │ │ ├── Chat │ │ │ │ │ │ └── SendMessageHandler.cs │ │ │ │ │ ├── Hello │ │ │ │ │ │ └── Hello.Handler.cs │ │ │ │ │ └── Profile │ │ │ │ │ │ └── GetProfile.Handler.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ └── Web.Application.csproj │ │ │ ├── Web.Contracts │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Extensions │ │ │ │ │ └── AssemblyExtensions.cs │ │ │ │ ├── Features │ │ │ │ │ ├── Admin │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ └── ModuleIds.cs │ │ │ │ │ │ ├── Roles │ │ │ │ │ │ │ ├── Commands │ │ │ │ │ │ │ │ ├── CreateRole.cs │ │ │ │ │ │ │ │ ├── DeleteRole.cs │ │ │ │ │ │ │ │ └── UpdateRole.cs │ │ │ │ │ │ │ ├── Queries │ │ │ │ │ │ │ │ ├── GetRole.cs │ │ │ │ │ │ │ │ └── GetRoles.cs │ │ │ │ │ │ │ └── RoleDetails.cs │ │ │ │ │ │ └── Users │ │ │ │ │ │ │ └── UserIds.cs │ │ │ │ │ ├── Analytics │ │ │ │ │ │ ├── TrackEvent.cs │ │ │ │ │ │ ├── TrackEventValidiation.mixin │ │ │ │ │ │ └── TrackEventValidiation.mixin.cs │ │ │ │ │ ├── Auth │ │ │ │ │ │ └── Queries │ │ │ │ │ │ │ └── GetSignInToken.cs │ │ │ │ │ ├── Authentication │ │ │ │ │ │ └── Queries │ │ │ │ │ │ │ └── GetCurrentUser.cs │ │ │ │ │ ├── Authorization │ │ │ │ │ │ └── RoleIds.cs │ │ │ │ │ ├── Chat │ │ │ │ │ │ ├── ChatHubConstants.cs │ │ │ │ │ │ ├── ClientToServer │ │ │ │ │ │ │ └── SendMessage.cs │ │ │ │ │ │ └── ServerToClient │ │ │ │ │ │ │ └── ReceiveMessage.cs │ │ │ │ │ ├── Hello │ │ │ │ │ │ └── Hello.cs │ │ │ │ │ ├── Infrastructure │ │ │ │ │ │ └── InternalsVisibleToClientAndServer.cs │ │ │ │ │ ├── Profile │ │ │ │ │ │ └── Queries │ │ │ │ │ │ │ └── GetProfile.cs │ │ │ │ │ ├── TodoItems │ │ │ │ │ │ ├── Commands │ │ │ │ │ │ │ ├── CreateTodoItem.cs │ │ │ │ │ │ │ ├── DeleteTodoItem.cs │ │ │ │ │ │ │ └── UpdateTodoItem.cs │ │ │ │ │ │ ├── Queries │ │ │ │ │ │ │ ├── GetTodoItemById.cs │ │ │ │ │ │ │ └── SearchTodoItems.cs │ │ │ │ │ │ └── TodoItemDto.cs │ │ │ │ │ └── V2 │ │ │ │ │ │ └── Overview.md │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Mixins │ │ │ │ │ ├── CreateCommand.mixin │ │ │ │ │ ├── CreateCommandMixin.md │ │ │ │ │ ├── DeleteCommand.mixin │ │ │ │ │ ├── GetListQuery.mixin │ │ │ │ │ ├── GetQuery.mixin │ │ │ │ │ ├── Overview.md │ │ │ │ │ └── UpdateCommand.mixin │ │ │ │ ├── Types │ │ │ │ │ └── SignalRResult.cs │ │ │ │ ├── Web.Contracts.csproj │ │ │ │ └── Web.Contracts.csproj.DotSettings │ │ │ ├── Web.Domain │ │ │ │ ├── Abstractions │ │ │ │ │ └── IInvariants.cs │ │ │ │ ├── Aggregates │ │ │ │ │ ├── Catalog │ │ │ │ │ │ ├── Category.cs │ │ │ │ │ │ └── Product.cs │ │ │ │ │ ├── Overview.md │ │ │ │ │ ├── Profile │ │ │ │ │ │ └── Profile.cs │ │ │ │ │ └── X_Aggregate │ │ │ │ │ │ ├── Overview.md │ │ │ │ │ │ └── Requests │ │ │ │ │ │ └── Overview.md │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ └── Web.Domain.csproj │ │ │ ├── Web.Infrastructure │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Configuration │ │ │ │ │ └── PostgresDbOptions.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Persistence │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── ProfileConfiguration.cs │ │ │ │ │ ├── CosmosDbContext.cs │ │ │ │ │ ├── Migrations │ │ │ │ │ │ └── Overview.md │ │ │ │ │ ├── Overview.md │ │ │ │ │ ├── PostgresDbContext.cs │ │ │ │ │ └── SqlDbContext.cs │ │ │ │ ├── Web.Infrastructure.csproj │ │ │ │ └── Web_Infrastructure_Module.cs │ │ │ ├── Web.Server │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Components │ │ │ │ │ ├── App.razor │ │ │ │ │ └── _Imports.razor │ │ │ │ ├── Configuration │ │ │ │ │ ├── EnvironmentChecks │ │ │ │ │ │ ├── PostgresDbEnvironmentCheck.cs │ │ │ │ │ │ └── SampleEnvironmentCheck.cs │ │ │ │ │ ├── SampleOptions.cs │ │ │ │ │ └── SampleOptionsValidator.cs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Features │ │ │ │ │ ├── Analytics │ │ │ │ │ │ ├── FeatureAnnotations.cs │ │ │ │ │ │ └── TrackEventEndpoint.cs │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── FeatureAnnotations.cs │ │ │ │ │ │ └── GetSignInTokenEndpoint.cs │ │ │ │ │ ├── Hello │ │ │ │ │ │ ├── FeatureAnnotations.cs │ │ │ │ │ │ └── HelloEndpoint.cs │ │ │ │ │ └── Profile │ │ │ │ │ │ ├── FeatureAnnotations.cs │ │ │ │ │ │ └── GetProfileEndpoint.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── HostedServices │ │ │ │ │ ├── CosmosDbContextStartupHostedService.cs │ │ │ │ │ └── PostgresDbContextStartupHostedService.cs │ │ │ │ ├── Hubs │ │ │ │ │ └── ChatHub.cs │ │ │ │ ├── Mixins │ │ │ │ │ └── Overview.md │ │ │ │ ├── Modules │ │ │ │ │ ├── CosmosDbModule.cs │ │ │ │ │ └── PostgresDbModule.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── Services │ │ │ │ │ ├── ChatHubService.cs │ │ │ │ │ └── Overview.md │ │ │ │ ├── Web.Server.csproj │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.Kubernetes_Docker.json │ │ │ │ ├── appsettings.Production.json │ │ │ │ └── appsettings.json │ │ │ └── Web.Spa │ │ │ │ ├── .eslintrc.js │ │ │ │ ├── .prettierignore │ │ │ │ ├── .prettierrc.json │ │ │ │ ├── AssemblyMarker.cs │ │ │ │ ├── Components │ │ │ │ ├── Base │ │ │ │ │ ├── Abstractions │ │ │ │ │ │ ├── IAttributeComponent.cs │ │ │ │ │ │ └── IParentComponent.cs │ │ │ │ │ ├── DisplayComponent.cs │ │ │ │ │ ├── EditMode.cs │ │ │ │ │ └── ParentComponent.cs │ │ │ │ ├── Composites │ │ │ │ │ ├── AuthorizedFluentNavLink.razor │ │ │ │ │ └── TimeWarpPage │ │ │ │ │ │ ├── LeftPane │ │ │ │ │ │ ├── LeftPane.razor │ │ │ │ │ │ ├── LeftPane_Footer.razor │ │ │ │ │ │ ├── LeftPane_Header.razor │ │ │ │ │ │ └── LeftPane_Main.razor │ │ │ │ │ │ ├── RightPane │ │ │ │ │ │ ├── RightPane.razor │ │ │ │ │ │ ├── RightPane_Footer.razor │ │ │ │ │ │ ├── RightPane_Header.razor │ │ │ │ │ │ └── RightPane_Main │ │ │ │ │ │ │ ├── AsidePane │ │ │ │ │ │ │ ├── AsidePane.razor │ │ │ │ │ │ │ ├── AsidePane_Footer.razor │ │ │ │ │ │ │ ├── AsidePane_Header.razor │ │ │ │ │ │ │ └── AsidePane_Main.razor │ │ │ │ │ │ │ ├── PagePane │ │ │ │ │ │ │ ├── PagePane.razor │ │ │ │ │ │ │ ├── PagePane_Footer.razor │ │ │ │ │ │ │ ├── PagePane_Header.razor │ │ │ │ │ │ │ └── PagePane_Main.razor │ │ │ │ │ │ │ └── RightPane_Main.razor │ │ │ │ │ │ ├── TimeWarpPage.md │ │ │ │ │ │ ├── TimeWarpPage.png │ │ │ │ │ │ ├── TimeWarpPage.razor │ │ │ │ │ │ └── TimeWarpPageSubComponentBase.cs │ │ │ │ ├── Elements │ │ │ │ │ ├── Button.razor │ │ │ │ │ ├── Button.razor.cs │ │ │ │ │ ├── HyperLink.razor │ │ │ │ │ ├── HyperLink.razor.cs │ │ │ │ │ ├── SimpleAlert.razor │ │ │ │ │ ├── SimpleAlert.razor.css │ │ │ │ │ ├── Text.razor │ │ │ │ │ ├── TimeWarpNavLink.razor │ │ │ │ │ └── TimeWarpNavUrl.razor │ │ │ │ ├── Forms │ │ │ │ │ ├── FormContainer.razor │ │ │ │ │ └── InputSelectNumber.cs │ │ │ │ ├── Interfaces │ │ │ │ │ ├── INavigableComponent.cs │ │ │ │ │ └── IStaticRoute.cs │ │ │ │ ├── Layouts │ │ │ │ │ ├── FluentUIRequiredFeatures.razor │ │ │ │ │ └── MainLayout.razor │ │ │ │ ├── Overview.md │ │ │ │ ├── Pages │ │ │ │ │ ├── NotificationBanner.razor │ │ │ │ │ ├── SideNavigation.razor │ │ │ │ │ ├── SideNavigation.razor.cs │ │ │ │ │ ├── SideNavigationLink.razor │ │ │ │ │ ├── SideNavigationLink.razor.cs │ │ │ │ │ ├── SiteFooter.razor │ │ │ │ │ ├── SitePage │ │ │ │ │ │ ├── LeftPane_Footer.razor │ │ │ │ │ │ ├── LeftPane_Header.razor │ │ │ │ │ │ ├── LeftPane_Main.razor │ │ │ │ │ │ ├── RightPane_Footer.razor │ │ │ │ │ │ ├── RightPane_Header.razor │ │ │ │ │ │ ├── SitePage.md │ │ │ │ │ │ └── SitePage.razor │ │ │ │ │ ├── Stacked │ │ │ │ │ │ ├── Overview.md │ │ │ │ │ │ ├── StackedPage.razor │ │ │ │ │ │ └── StackedPage.razor.cs │ │ │ │ │ └── _Imports.razor │ │ │ │ ├── Routes.razor │ │ │ │ └── Services │ │ │ │ │ └── LinkHelper.cs │ │ │ │ ├── Configuration │ │ │ │ ├── BlazorSettings.cs │ │ │ │ └── Passwordless │ │ │ │ │ └── PasswordlessOptions.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── Features │ │ │ │ ├── Account │ │ │ │ │ ├── AccountState │ │ │ │ │ │ ├── AccountState.Debug.cs │ │ │ │ │ │ └── AccountState.cs │ │ │ │ │ └── Pages │ │ │ │ │ │ ├── ChangePasswordPage.razor │ │ │ │ │ │ ├── ChangePasswordPage.razor.cs │ │ │ │ │ │ ├── LoginPage │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ └── LoginForm.razor │ │ │ │ │ │ ├── LoginPage.razor │ │ │ │ │ │ ├── LoginPage.razor.cs │ │ │ │ │ │ ├── RegisterPasskey.razor │ │ │ │ │ │ └── _Imports.razor │ │ │ │ │ │ ├── LogoutPage.razor │ │ │ │ │ │ └── LogoutPage.razor.cs │ │ │ │ ├── Application │ │ │ │ │ ├── ApplicationState │ │ │ │ │ │ ├── ApplicationState.CloseModal.cs │ │ │ │ │ │ ├── ApplicationState.Debug.cs │ │ │ │ │ │ ├── ApplicationState.FiveSecondTask.cs │ │ │ │ │ │ ├── ApplicationState.ResetStore.cs │ │ │ │ │ │ ├── ApplicationState.SetActiveModal.cs │ │ │ │ │ │ ├── ApplicationState.ToggleMenu.cs │ │ │ │ │ │ ├── ApplicationState.TwoSecondTask.cs │ │ │ │ │ │ ├── ApplicationState.cs │ │ │ │ │ │ └── ApplicationState.md │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ModalContainer.razor │ │ │ │ │ │ ├── ModalContainer.razor.cs │ │ │ │ │ │ ├── ModalController.razor │ │ │ │ │ │ └── NavBar │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ ├── AlertButton.razor │ │ │ │ │ │ │ ├── Logo.razor │ │ │ │ │ │ │ ├── MobileMenu.razor │ │ │ │ │ │ │ ├── MobileMenuButton.razor │ │ │ │ │ │ │ ├── NavBarLink.razor │ │ │ │ │ │ │ └── NavigationLinks.razor │ │ │ │ │ │ │ └── DarkNavBar.razor │ │ │ │ │ ├── Modals │ │ │ │ │ │ └── AssemblyInfo │ │ │ │ │ │ │ ├── AssemblyInfoModal.razor │ │ │ │ │ │ │ ├── LinkDisplay.razor │ │ │ │ │ │ │ └── PropertyDisplay.razor │ │ │ │ │ └── Pages │ │ │ │ │ │ ├── ForbiddenPage.razor │ │ │ │ │ │ ├── HomePage.razor │ │ │ │ │ │ ├── HomePage.razor.cs │ │ │ │ │ │ ├── NotFoundPage.razor │ │ │ │ │ │ └── _Imports.razor │ │ │ │ ├── Authentication │ │ │ │ │ ├── AccountClaimsPrincipalFactoryWithRoles.cs │ │ │ │ │ └── AuthenticationStateListener.razor │ │ │ │ ├── Authorization │ │ │ │ │ ├── AuthorizationConstants.cs │ │ │ │ │ ├── AuthorizationState │ │ │ │ │ │ ├── AuthorizationState.ClearCurrentUser.cs │ │ │ │ │ │ ├── AuthorizationState.FetchCurrentUser.cs │ │ │ │ │ │ └── AuthorizationState.cs │ │ │ │ │ ├── CustomRequirements │ │ │ │ │ │ ├── ModuleRequirement.cs │ │ │ │ │ │ └── ModuleRequirementHandler.cs │ │ │ │ │ ├── NavigationPolicyRegistration.cs │ │ │ │ │ ├── PagePolicyRegistration.cs │ │ │ │ │ └── PolicyRegistration.cs │ │ │ │ ├── Base │ │ │ │ │ ├── ApiHandler.cs │ │ │ │ │ ├── AuthenticatedHandler.cs │ │ │ │ │ ├── AuthenticationStateProviderExtensions.cs │ │ │ │ │ ├── BaseCacheableState.cs │ │ │ │ │ ├── BaseComponent.Auth.cs │ │ │ │ │ ├── BaseComponent.Css.cs │ │ │ │ │ ├── BaseComponent.StateAccessors.cs │ │ │ │ │ ├── BaseComponent.cs │ │ │ │ │ ├── BaseHandler.cs │ │ │ │ │ ├── DefaultApiHandler.cs │ │ │ │ │ ├── FileResponseApiHandler.cs │ │ │ │ │ ├── IBaseAction.cs │ │ │ │ │ └── StateAccessMixin.mixin │ │ │ │ ├── Chat │ │ │ │ │ ├── ChatState │ │ │ │ │ │ ├── ChatState.ClientToServerMessageAction.cs │ │ │ │ │ │ ├── ChatState.ServerToClientMessageAction.cs │ │ │ │ │ │ └── ChatState.cs │ │ │ │ │ └── Pages │ │ │ │ │ │ ├── ChatPage.razor │ │ │ │ │ │ └── ChatPage.razor.cs │ │ │ │ ├── Counter │ │ │ │ │ ├── Components │ │ │ │ │ │ └── Counter.razor │ │ │ │ │ ├── CounterState │ │ │ │ │ │ ├── CounterState.Debug.cs │ │ │ │ │ │ ├── CounterState.IncrementCounter.cs │ │ │ │ │ │ ├── CounterState.ThrowException.cs │ │ │ │ │ │ └── CounterState.cs │ │ │ │ │ ├── Notification │ │ │ │ │ │ └── IncrementCountNotificationHandler.cs │ │ │ │ │ └── Pages │ │ │ │ │ │ ├── CounterPage.razor │ │ │ │ │ │ └── CounterPage.razor.cs │ │ │ │ ├── Debugger │ │ │ │ │ ├── Components │ │ │ │ │ │ └── ServiceList.razor │ │ │ │ │ └── Pages │ │ │ │ │ │ ├── ServicesPage.razor │ │ │ │ │ │ ├── ServicesPage.razor.cs │ │ │ │ │ │ ├── TestPage.razor │ │ │ │ │ │ └── TestPage.razor.cs │ │ │ │ ├── Developer │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── UserClaims.razor │ │ │ │ │ │ └── UserClaimsBase.cs │ │ │ │ │ └── Pages │ │ │ │ │ │ ├── AlertExamplePage.razor │ │ │ │ │ │ ├── AlertExamplePage.razor.cs │ │ │ │ │ │ ├── AlertExamplePage.razor.css │ │ │ │ │ │ ├── ExampleSitePage.razor │ │ │ │ │ │ ├── ExampleSitePage.razor.cs │ │ │ │ │ │ ├── ExampleTimeWarpPage.razor │ │ │ │ │ │ ├── ExampleTimeWarpPage.razor.cs │ │ │ │ │ │ ├── UserClaimsPage.razor │ │ │ │ │ │ └── UserClaimsPage.razor.cs │ │ │ │ ├── EventStream │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── EventStream.razor │ │ │ │ │ │ └── EventStream.razor.cs │ │ │ │ │ ├── EventStreamState │ │ │ │ │ │ ├── EventStreamState.AddEvent.cs │ │ │ │ │ │ ├── EventStreamState.Debug.cs │ │ │ │ │ │ └── EventStreamState.cs │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── EventStreamPage.razor │ │ │ │ │ │ └── EventStreamPage.razor.cs │ │ │ │ │ └── Pipeline │ │ │ │ │ │ └── EventStreamBehavior.cs │ │ │ │ ├── Notification │ │ │ │ │ └── NotificationState │ │ │ │ │ │ ├── NotificationState.AddNotification.cs │ │ │ │ │ │ ├── NotificationState.AddProblemDetails.cs │ │ │ │ │ │ └── NotificationState.cs │ │ │ │ ├── ProfileMenu │ │ │ │ │ ├── Components │ │ │ │ │ │ └── ProfileButton.razor │ │ │ │ │ └── ProfileMenuState │ │ │ │ │ │ ├── ProfileMenuState.Close.cs │ │ │ │ │ │ ├── ProfileMenuState.Debug.cs │ │ │ │ │ │ ├── ProfileMenuState.Toggle.cs │ │ │ │ │ │ └── ProfileMenuState.cs │ │ │ │ ├── Profiles │ │ │ │ │ ├── Components │ │ │ │ │ │ └── Profile.razor │ │ │ │ │ └── ProfileState │ │ │ │ │ │ ├── ProfileState.ClearProfileData.cs │ │ │ │ │ │ ├── ProfileState.FetchProfileData.cs │ │ │ │ │ │ └── ProfileState.cs │ │ │ │ ├── Sidebar │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── Sections │ │ │ │ │ │ │ ├── BottomSidebarNavSection.razor │ │ │ │ │ │ │ ├── DeveloperPagesSidebarNavSection.razor │ │ │ │ │ │ │ ├── ExternalLinksSidebarNavSection.razor │ │ │ │ │ │ │ ├── PagesSidebarNavSection.razor │ │ │ │ │ │ │ ├── SwaggerDocsSidebarNavSection.razor │ │ │ │ │ │ │ └── TopSidebarNavSection.razor │ │ │ │ │ │ └── SideBar │ │ │ │ │ │ │ ├── HamburgerButton.razor │ │ │ │ │ │ │ ├── HeaderBar.razor │ │ │ │ │ │ │ ├── Sidebar.razor │ │ │ │ │ │ │ ├── SidebarLink.razor │ │ │ │ │ │ │ ├── SidebarMobileMenu.razor │ │ │ │ │ │ │ ├── SidebarMobileMenu.razor.cs │ │ │ │ │ │ │ ├── SidebarNavSection.razor │ │ │ │ │ │ │ ├── SidebarPage.razor │ │ │ │ │ │ │ └── SidebarPage.razor.cs │ │ │ │ │ └── SideBarState │ │ │ │ │ │ ├── SideBarState.cs │ │ │ │ │ │ ├── SidebarState.CloseSideBar.cs │ │ │ │ │ │ ├── SidebarState.Debug.cs │ │ │ │ │ │ └── SidebarState.OpenSideBar.cs │ │ │ │ ├── Superhero │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── SuperheroPage.razor │ │ │ │ │ │ ├── SuperheroPage.razor.cs │ │ │ │ │ │ └── _Imports.razor │ │ │ │ │ ├── SuperheroModule.cs │ │ │ │ │ └── SuperheroState │ │ │ │ │ │ ├── SuperheroState.FetchSuperhero.cs │ │ │ │ │ │ └── SuperheroState.cs │ │ │ │ ├── ToDo │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── TodoItemForm.razor │ │ │ │ │ │ ├── TodoItemFormContainer.razor │ │ │ │ │ │ └── TodoItemList.razor │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── TodoItemPage.razor │ │ │ │ │ │ ├── TodoItemPage.razor.cs │ │ │ │ │ │ ├── TodoItemsPage.razor │ │ │ │ │ │ └── TodoItemsPage.razor.cs │ │ │ │ │ └── TodoState.cs │ │ │ │ ├── ToastNotification │ │ │ │ │ └── ToastNotificationState │ │ │ │ │ │ ├── ToastNotificationState.AddNotification.cs │ │ │ │ │ │ ├── ToastNotificationState.AddProblemDetails.cs │ │ │ │ │ │ ├── ToastNotificationState.ExceptionNotificationHandler.cs │ │ │ │ │ │ └── ToastNotificationState.cs │ │ │ │ └── WeatherForecast │ │ │ │ │ ├── Components │ │ │ │ │ ├── Cell.razor │ │ │ │ │ └── TableHeader.razor │ │ │ │ │ ├── Pages │ │ │ │ │ ├── WeatherForecastsPage.razor │ │ │ │ │ ├── WeatherForecastsPage.razor.cs │ │ │ │ │ └── _Imports.razor │ │ │ │ │ ├── WeatherForecastModule.cs │ │ │ │ │ └── WeatherForecastsState │ │ │ │ │ ├── WeatherForecastsState.Debug.cs │ │ │ │ │ ├── WeatherForecastsState.FetchWeatherForecasts.cs │ │ │ │ │ └── WeatherForecastsState.cs │ │ │ │ ├── GlobalSuppressions.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Hubs │ │ │ │ └── ChatHubConnection.cs │ │ │ │ ├── JavaScriptInteropConstants.cs │ │ │ │ ├── Mixins │ │ │ │ ├── Page.mixin │ │ │ │ └── PageMixin.md │ │ │ │ ├── Overview.md │ │ │ │ ├── Pages │ │ │ │ ├── Authentication.razor │ │ │ │ ├── ProfilePage.razor │ │ │ │ ├── ProfilePage.razor.cs │ │ │ │ ├── RedirectToLogin.razor │ │ │ │ ├── SettingsPage.razor │ │ │ │ └── SettingsPage.razor.cs │ │ │ │ ├── Pipeline │ │ │ │ ├── MyBehavior.cs │ │ │ │ ├── NotificationPostProcessor │ │ │ │ │ ├── PostPipelineNotification.cs │ │ │ │ │ └── PostPipelineNotificationRequestPostProcessor.cs │ │ │ │ └── NotificationPreProcessor │ │ │ │ │ ├── PrePipelineNotification.cs │ │ │ │ │ └── PrePipelineNotificationRequestPreProcessor.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Services │ │ │ │ ├── ApiServices │ │ │ │ │ ├── ApiServerApiService.cs │ │ │ │ │ ├── BaseApiService.cs │ │ │ │ │ ├── BaseAuthApiService.cs │ │ │ │ │ └── WebServerApiService.cs │ │ │ │ ├── Mocks │ │ │ │ │ ├── MockAccessTokenProvider.cs │ │ │ │ │ ├── MockAccessTokenProvider.md │ │ │ │ │ ├── MockApiService.cs │ │ │ │ │ ├── MockAuthenticationStateProvider.cs │ │ │ │ │ ├── MockAuthenticationStateProvider.md │ │ │ │ │ └── MockWebApiService.cs │ │ │ │ ├── PasswordlessService.cs │ │ │ │ ├── RouteModeResolver.cs │ │ │ │ ├── ServiceUriProvider.cs │ │ │ │ └── SuperheroGrpcServiceProvider.cs │ │ │ │ ├── Source │ │ │ │ ├── Features │ │ │ │ │ └── Counter.ts │ │ │ │ ├── Spa.ts │ │ │ │ ├── Types │ │ │ │ │ ├── Constants.d.ts │ │ │ │ │ ├── DotNetReference.d.ts │ │ │ │ │ ├── Logger.d.ts │ │ │ │ │ ├── ReduxDevTools.d.ts │ │ │ │ │ ├── TimeWarpState.d.ts │ │ │ │ │ └── global.d.ts │ │ │ │ └── Web.Spa.lib.module.ts │ │ │ │ ├── Styles │ │ │ │ └── input.css │ │ │ │ ├── Web.Spa.csproj │ │ │ │ ├── Web.Spa.csproj.DotSettings │ │ │ │ ├── _Imports.razor │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── tailwind.config.js │ │ │ │ ├── tsconfig.json │ │ │ │ └── wwwroot │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── appsettings.Production.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── css │ │ │ │ └── fluent.css │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon.png │ │ │ │ ├── favicons │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-384x384.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── safari-pinned-tab.svg │ │ │ │ └── site.webmanifest │ │ │ │ ├── icon-192.png │ │ │ │ ├── icon-512.png │ │ │ │ ├── images │ │ │ │ ├── TheFreezeTeam │ │ │ │ │ ├── SOLID_D.png │ │ │ │ │ ├── SOLID_I.png │ │ │ │ │ ├── SOLID_L.png │ │ │ │ │ ├── SOLID_O.png │ │ │ │ │ ├── SOLID_S.png │ │ │ │ │ ├── SOLID_Team.png │ │ │ │ │ └── SOLID_Team_1246x340.png │ │ │ │ ├── TimeWarp │ │ │ │ │ ├── TIMEWARP ENTERPRISES.png │ │ │ │ │ ├── TIMEWARP ENTERPRISES.svg │ │ │ │ │ └── timewarp-logo-only.png │ │ │ │ └── logo.png │ │ │ │ ├── manifest.json │ │ │ │ ├── service-worker.js │ │ │ │ └── service-worker.published.js │ │ └── Yarp │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Dockerfile │ │ │ ├── GlobalUsings.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Yarp.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.Kubernetes_Docker.json │ │ │ ├── appsettings.Production.json │ │ │ └── appsettings.json │ ├── Directory.Build.props │ ├── GenTester │ │ ├── GenTester.csproj │ │ └── Program.cs │ ├── Libraries │ │ ├── TimeWarp.Automation.Contracts │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Class1.cs │ │ │ ├── Features │ │ │ │ ├── RunApplication │ │ │ │ │ └── RunApplication.cs │ │ │ │ └── RunWindowsApplication │ │ │ │ │ └── RunWindowsApplication.cs │ │ │ ├── GlobalUsings.cs │ │ │ └── TimeWarp.Automation.Contracts.csproj │ │ ├── TimeWarp.Automation │ │ │ ├── AssemblyMarker.cs │ │ │ ├── Class1.cs │ │ │ ├── Features │ │ │ │ ├── RunApplication │ │ │ │ │ └── RunApplication.Handler.cs │ │ │ │ └── RunWindowsApplication │ │ │ │ │ └── RunWindowsApplication.Handler.cs │ │ │ ├── GlobalUsings.cs │ │ │ └── TimeWarp.Automation.csproj │ │ └── TimeWarp.Modules │ │ │ ├── AssemblyMarker.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── IModule.cs │ │ │ └── TimeWarp.Modules.csproj │ ├── Overview.md │ └── Program.cs ├── Spikes │ └── Overview.md ├── Tests │ ├── Analyzers │ │ ├── TimeWarp.Architecture.Analyzers.Tests │ │ │ ├── FixieVerifier.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── PartialClassDeclarationAnalyzer_Tests.cs │ │ │ ├── TestingConvention.cs │ │ │ └── TimeWarp.Architecture.Analyzers.Tests.csproj │ │ └── TimeWarp.Architecture.SourceGenerator.Tests │ │ │ ├── FastEndpointSourceGenerator_MoreTests.cs │ │ │ ├── FastEndpointSourceGenerator_Tests.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── TestingConvention.cs │ │ │ └── TimeWarp.Architecture.SourceGenerator.Tests.csproj │ ├── Common │ │ └── Common.Infrastructure.Tests │ │ │ ├── Common.Infrastructure.Tests.csproj │ │ │ ├── DateTimeService_Tests.cs │ │ │ ├── GlobalUsings.cs │ │ │ └── Infrastructure │ │ │ └── TheTestingConvention.cs │ ├── ContainerApps │ │ ├── Api │ │ │ └── Api.Server.Integration.Tests │ │ │ │ ├── Api.Server.Integration.Tests.csproj │ │ │ │ ├── Features │ │ │ │ ├── Test │ │ │ │ │ └── ConventionTests │ │ │ │ │ │ └── ApiTestServerApplicationTests.cs │ │ │ │ └── WeatherForecast │ │ │ │ │ └── Get │ │ │ │ │ ├── GetWeatherForecastsEndpoint_Tests.cs │ │ │ │ │ ├── GetWeatherForecastsHandler_Tests.cs │ │ │ │ │ └── GetWeatherForecastsRequestValidator_Tests.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Infrastructure │ │ │ │ └── ApiServerTestConvention.cs │ │ │ │ └── appsettings.json │ │ ├── Aspire │ │ │ ├── Aspire.csproj │ │ │ ├── GlobalUsings.cs │ │ │ └── IntegrationTest1.cs │ │ └── Web │ │ │ ├── Web.Server.Integration.Tests │ │ │ ├── .runsettings │ │ │ ├── Features │ │ │ │ ├── Analytics │ │ │ │ │ └── TrackEvent │ │ │ │ │ │ ├── TrackEvent_Endpoint_Tests.cs │ │ │ │ │ │ ├── TrackEvent_Handler_Tests.cs │ │ │ │ │ │ └── TrackEvent_Validator_Tests.cs │ │ │ │ ├── Hello │ │ │ │ │ ├── Hello_Endpoint_Tests.cs │ │ │ │ │ ├── Hello_Handler_Tests.cs │ │ │ │ │ └── Hello_Validator_Tests.cs │ │ │ │ └── Test │ │ │ │ │ └── ConventionTests │ │ │ │ │ └── WebTestServerApplicationTests.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── Infrastructure │ │ │ │ └── WebServerTestConvention.cs │ │ │ ├── Web.Server.Integration.Tests.csproj │ │ │ └── appsettings.json │ │ │ └── Web.Spa.Integration.Tests │ │ │ ├── .runsettings │ │ │ ├── Features │ │ │ ├── Application │ │ │ │ └── ApplicationState_Clone_Tests.cs │ │ │ ├── Counter │ │ │ │ ├── CounterState_Clone_Tests.cs │ │ │ │ └── CounterState_IncrementCounter_Tests.cs │ │ │ ├── EventStream │ │ │ │ └── EventStreamState_Clone_Tests.cs │ │ │ └── WeatherForecast │ │ │ │ ├── WeatherForecastState_Clone_Tests.cs │ │ │ │ ├── WeatherForecastState_FetchWeatherForecastsAction_Tests.cs │ │ │ │ └── WeatherForecastState_Serialization_Tests.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── Infrastructure │ │ │ ├── AspireSpaTestApplication.cs │ │ │ ├── BaseTest.cs │ │ │ └── SpaTestConvention.cs │ │ │ ├── Pipeline │ │ │ └── CloneStateBehavior_Tests.cs │ │ │ ├── Serialization │ │ │ ├── JsonSerializerOptions_Serialization_Tests.cs │ │ │ └── Person.cs │ │ │ ├── Web.Spa.Integration.Tests.csproj │ │ │ └── appsettings.json │ ├── EndToEnd.Playwright.Tests │ │ ├── EndToEnd.Playwright.Tests.csproj │ │ ├── GlobalUsings.cs │ │ ├── Overview.md │ │ └── Program.cs │ ├── Libraries │ │ └── TimeWarp.Automation.Tests │ │ │ ├── ConventionTests.cs │ │ │ ├── Features │ │ │ ├── RunApplication │ │ │ │ └── RunApplicationHandler_Tests.cs │ │ │ └── RunWindowsApplication │ │ │ │ └── RunWindowsApplicationHandler_Tests.cs │ │ │ ├── GlobalUsings.cs │ │ │ ├── TestingConvention.cs │ │ │ └── TimeWarp.Automation.Tests.csproj │ ├── Overview.md │ └── TimeWarp.Testing │ │ ├── Applications │ │ ├── ApiTestServerApplication.cs │ │ ├── SpaTestApplication.cs │ │ ├── WebTestServerApplication.cs │ │ └── YarpTestServerApplication.cs │ │ ├── Constants.cs │ │ ├── GlobalSuppressions.cs │ │ ├── GlobalUsings.cs │ │ ├── ScopedSender.cs │ │ ├── TestApplication.cs │ │ ├── TestServerApplication.cs │ │ ├── Testing.Common.csproj │ │ ├── TestingConvention │ │ └── TestingConvention.cs │ │ ├── WebApiTestService │ │ ├── IWebApiTestService.cs │ │ └── WebApiTestService.cs │ │ └── WebApplicationHost.cs ├── TimeWarp.Architecture.sln.DotSettings ├── TimeWarp.Architecture.slnx ├── Tools │ └── Overview.md ├── UNLICENSE.md ├── Watch.ps1 ├── cline.ps1 ├── docker-timewarp-build.ps1 ├── global.json ├── install-dependencies-windows-11.md ├── msbuild │ └── repository.props └── runfiles │ └── overview.md ├── TimeWarp.Templates ├── .editorconfig ├── .gitignore ├── .mailmap ├── .markdownlint.json ├── Assets │ ├── Logo.png │ ├── Logo.svg │ ├── LogoNoMargin.svg │ ├── LogoNoMarginNoShadow.svg │ ├── LogoNoWordsOrShadow.svg │ ├── LogoNoWordsOrShadow_512x512.png │ └── LogoNoWordsOrShadow_64x64.png ├── Build │ ├── Documentation.yml │ └── PublishToGitHubPages.ps1 ├── Directory.Build.props ├── Documentation │ ├── .gitignore │ ├── Backlog │ │ └── Todo.md │ ├── HowToRunDocfx.md │ ├── TimeWarpArchitectureTemplate │ │ ├── Architecture.md │ │ ├── Documentation.md │ │ ├── Features.md │ │ └── Overview.md │ ├── docfx.json │ ├── index.md │ └── toc.yml ├── LICENSE ├── NuGet.config ├── RunDocServer.ps1 ├── Source │ └── TimeWarp.Architecture.Template │ │ ├── BuildAndInstallTemplate.ps1 │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ ├── TimeWarp.Architecture.csproj │ │ ├── global.json │ │ ├── images │ │ └── logo.png │ │ └── templates │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ ├── Feature.Action │ │ ├── .template.config │ │ │ ├── icon.png │ │ │ └── template.json │ │ └── GeneratedCode │ │ │ ├── Client.Tests │ │ │ ├── __FeatureName___State___ActionName___Clone_Tests.cs │ │ │ └── __FeatureName___State___ActionName___Tests.cs │ │ │ ├── Client │ │ │ └── __ActionName__ │ │ │ │ ├── __ActionName__Action.cs │ │ │ │ └── __ActionName__Handler.cs │ │ │ └── MoveIntoProjects.ps1 │ │ ├── Feature.AutoCrud │ │ ├── .template.config │ │ │ ├── icon.png │ │ │ └── template.json │ │ └── GeneratedCode │ │ │ ├── MoveIntoProjects.ps1 │ │ │ ├── Source │ │ │ ├── Api │ │ │ │ └── Features │ │ │ │ │ ├── Delete__FeatureName__ │ │ │ │ │ ├── Delete__FeatureName__Request.cs │ │ │ │ │ ├── Delete__FeatureName__RequestValidator.cs │ │ │ │ │ └── Delete__FeatureName__Response.cs │ │ │ │ │ ├── FeatureAnnotations.cs │ │ │ │ │ ├── GetAll__FeatureName__ │ │ │ │ │ ├── GetAll__FeatureName__Request.cs │ │ │ │ │ ├── GetAll__FeatureName__RequestValidator.cs │ │ │ │ │ └── GetAll__FeatureName__Response.cs │ │ │ │ │ ├── GetById__FeatureName__ │ │ │ │ │ ├── GetById__FeatureName__Request.cs │ │ │ │ │ ├── GetById__FeatureName__RequestValidator.cs │ │ │ │ │ └── GetById__FeatureName__Response.cs │ │ │ │ │ ├── Upsert__FeatureName__ │ │ │ │ │ ├── Upsert__FeatureName__Request.cs │ │ │ │ │ ├── Upsert__FeatureName__RequestValidator.cs │ │ │ │ │ └── Upsert__FeatureName__Response.cs │ │ │ │ │ └── __FeatureName__Dto.cs │ │ │ ├── Client │ │ │ │ ├── Actions │ │ │ │ │ ├── Create │ │ │ │ │ │ ├── Create__FeatureName__Action.cs │ │ │ │ │ │ └── Create__FeatureName__Handler.cs │ │ │ │ │ ├── Delete │ │ │ │ │ │ ├── Delete__FeatureName__Action.cs │ │ │ │ │ │ └── Delete__FeatureName__Handler.cs │ │ │ │ │ ├── Fetch │ │ │ │ │ │ ├── Fetch__FeatureName__Action.cs │ │ │ │ │ │ └── Fetch__FeatureName__Handler.cs │ │ │ │ │ └── Update │ │ │ │ │ │ ├── Update__FeatureName__Action.cs │ │ │ │ │ │ └── Update__FeatureName__Handler.cs │ │ │ │ ├── __FeatureName__State.Debug.cs │ │ │ │ └── __FeatureName__State.cs │ │ │ └── Server │ │ │ │ ├── Data │ │ │ │ └── ApplicationDbContext.cs │ │ │ │ ├── Features │ │ │ │ └── __FeatureName__ │ │ │ │ │ ├── Delete__FeatureName__ │ │ │ │ │ ├── Delete__FeatureName__Endpoint.cs │ │ │ │ │ └── Delete__FeatureName__Handler.cs │ │ │ │ │ ├── GetAll__FeatureName__ │ │ │ │ │ ├── GetAll__FeatureName__Endpoint.cs │ │ │ │ │ └── GetAll__FeatureName__Handler.cs │ │ │ │ │ ├── GetById__FeatureName__ │ │ │ │ │ ├── GetById__FeatureName__Endpoint.cs │ │ │ │ │ └── GetById__FeatureName__Handler.cs │ │ │ │ │ └── Upsert__FeatureName__ │ │ │ │ │ ├── Upsert__FeatureName__Endpoint.cs │ │ │ │ │ └── Upsert__FeatureName__Handler.cs │ │ │ │ ├── Mappers │ │ │ │ └── MappingProfiles.cs │ │ │ │ └── Models │ │ │ │ └── __FeatureName__Entity.cs │ │ │ └── Test │ │ │ └── ServerTests │ │ │ └── Endpoint.Test │ │ │ ├── __FeatureName__DeleteEndpoint_Tests.cs │ │ │ ├── __FeatureName__DeleteHandler_Tests.cs │ │ │ ├── __FeatureName__DeleteRequestValidator_Tests.cs │ │ │ ├── __FeatureName__GetEndpoint_Tests.cs │ │ │ ├── __FeatureName__GetHandler_Tests.cs │ │ │ ├── __FeatureName__GetRequestValidator_Tests.cs │ │ │ ├── __FeatureName__UpsertEndpoint_Tests.cs │ │ │ ├── __FeatureName__UpsertHandler_Tests.cs │ │ │ └── __FeatureName__UpsertRequestValidator_Tests.cs │ │ ├── Feature.CrudComponents │ │ ├── Create.razor │ │ ├── Create.razor.cs │ │ ├── Delete.razor │ │ ├── Delete.razor.cs │ │ ├── Details.razor │ │ ├── Details.razor.cs │ │ ├── Edit.razor │ │ ├── Edit.razor.cs │ │ ├── List.razor │ │ └── List.razor.cs │ │ ├── Feature.CrudPages │ │ └── Catalog │ │ │ ├── Create.razor │ │ │ ├── Create.razor.cs │ │ │ ├── Delete.razor │ │ │ ├── Delete.razor.cs │ │ │ ├── Details.razor │ │ │ ├── Details.razor.cs │ │ │ ├── Edit.razor │ │ │ ├── Edit.razor.cs │ │ │ ├── Index.razor │ │ │ └── Index.razor.cs │ │ ├── Feature.Endpoint │ │ ├── .template.config │ │ │ ├── icon.png │ │ │ └── template.json │ │ ├── Api │ │ │ ├── __RequestName__Request.cs │ │ │ ├── __RequestName__RequestValidator.cs │ │ │ └── __RequestName__Response.cs │ │ ├── FeatureAnnotations.cs │ │ ├── MoveIntoProjects.ps1 │ │ ├── Server.Tests │ │ │ ├── __RequestName__Endpoint_Tests.cs │ │ │ ├── __RequestName__Handler_Tests.cs │ │ │ └── __RequestName__RequestValidator_Tests.cs │ │ └── Server │ │ │ ├── __RequestName__Endpoint.cs │ │ │ └── __RequestName__Handler.cs │ │ └── Feature.State │ │ ├── .template.config │ │ ├── icon.png │ │ └── template.json │ │ └── GeneratedCode │ │ ├── Client.Tests │ │ └── __FeatureName__ │ │ │ └── __FeatureName__State_Clone_Tests.cs │ │ ├── Client │ │ ├── __FeatureName__State.Debug.cs │ │ └── __FeatureName__State.cs │ │ └── MoveIntoProjects.ps1 ├── Tests │ └── TimeWarp.Architecture.Template.Tests │ │ ├── .config │ │ └── dotnet-tools.json │ │ ├── EnumerableExtensions.cs │ │ ├── ProjectExtensions.cs │ │ ├── TemplateTest.cs │ │ └── TimeWarp.Architecture.Template.Tests.csproj ├── TimeWarp-Templates.slnx ├── global.json ├── testEnvironments.json └── version.json └── assets └── timewarp-architecture-avatar.svg /.github/scripts/sync-configurable-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/scripts/sync-configurable-files.ps1 -------------------------------------------------------------------------------- /.github/sync-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/sync-config.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/sync-configurable-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/workflows/sync-configurable-files.md -------------------------------------------------------------------------------- /.github/workflows/sync-configurable-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/workflows/sync-configurable-files.yml -------------------------------------------------------------------------------- /.github/workflows/timewarp-architecture-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/workflows/timewarp-architecture-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/timewarp-architecture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.github/workflows/timewarp-architecture.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.timewarp-architecture.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.idea/.idea.timewarp-architecture.dir/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.timewarp-architecture.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.idea/.idea.timewarp-architecture.dir/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.mailmap -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/README.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.agent/workspace/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.agent/workspace/overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/00-confirmation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/00-confirmation.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/01-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/01-user.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/02-development-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/02-development-process.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/03-environment.md: -------------------------------------------------------------------------------- 1 | ENVIRONMENT: 2 | 3 | COMMAND SHELL: 4 | - Format commands for pwsh 5 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/ProjectSage/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/ProjectSage/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/other/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/other/blog.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/other/create-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/other/create-prompt.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/other/nugets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/other/nugets.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/other/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/other/project-structure.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/other/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/other/references.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/other/shell-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/other/shell-commands.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.ai/other/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.ai/other/tools.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.clinerules -------------------------------------------------------------------------------- /TimeWarp.Architecture/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.config/dotnet-tools.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /TimeWarp.Architecture/.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.devcontainer/README.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/.devcontainer/init-firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.devcontainer/init-firewall.sh -------------------------------------------------------------------------------- /TimeWarp.Architecture/.devcontainer/post-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.devcontainer/post-create.sh -------------------------------------------------------------------------------- /TimeWarp.Architecture/.devcontainer/test-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.devcontainer/test-container.sh -------------------------------------------------------------------------------- /TimeWarp.Architecture/.devcontainer/validate-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.devcontainer/validate-container.sh -------------------------------------------------------------------------------- /TimeWarp.Architecture/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.dockerignore -------------------------------------------------------------------------------- /TimeWarp.Architecture/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.editorconfig -------------------------------------------------------------------------------- /TimeWarp.Architecture/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.gitattributes -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/issue_template/ai_agent_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/issue_template/ai_agent_task.yml -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/issue_template/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/issue_template/bug_report.yml -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/issue_template/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/issue_template/feature_request.yml -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/scripts/sync-configurable-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/scripts/sync-configurable-files.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/sync-config.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/sync-config.yml.disabled -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/workflow-templates/api-server.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/workflow-templates/api-server.properties.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/workflows/claude-code-review.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/workflows/claude-code-review.yml.disabled -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/workflows/claude.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/workflows/claude.yml.disabled -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/workflows/sync-configurable-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/workflows/sync-configurable-files.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/workflows/sync-configurable-files.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/workflows/sync-configurable-files.yml.disabled -------------------------------------------------------------------------------- /TimeWarp.Architecture/.github/workflows/test-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.github/workflows/test-sync.yml -------------------------------------------------------------------------------- /TimeWarp.Architecture/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.gitignore -------------------------------------------------------------------------------- /TimeWarp.Architecture/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.mailmap -------------------------------------------------------------------------------- /TimeWarp.Architecture/.rooignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.rooignore -------------------------------------------------------------------------------- /TimeWarp.Architecture/.template.config/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.template.config/icon.png -------------------------------------------------------------------------------- /TimeWarp.Architecture/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.template.config/template.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.vscode/launch.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/.vscode/settings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/ApiDependencies.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/ApiDependencies.dgml -------------------------------------------------------------------------------- /TimeWarp.Architecture/Assets/Overview.md: -------------------------------------------------------------------------------- 1 | # Assets 2 | 3 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Build.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/CSS Bundle Hash Management in Blazor with Tailwind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/CSS Bundle Hash Management in Blazor with Tailwind.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Claude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Claude.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/deprovision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/deprovision.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/main.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/cli.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/cli.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/role.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/role.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/roles.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/roles.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/rolesacr.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/rolesacr.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/rolesapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/Authorization/rolesapp.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/aks.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/app_Configuration.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/container_registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/container_registry.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/cosmos_db.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/cosmos_db.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/modules/key_vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/modules/key_vault.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/provision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/provision.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/subscription.bicep -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/validate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/validate.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Bicep/what-if.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Bicep/what-if.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Docker/BuildImages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Docker/BuildImages.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Docker/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Docker/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Docker/docker-compose.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Docker/timewarp.software.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Docker/timewarp.software.dockerfile -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/0_Namespaces/namespace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/0_Namespaces/namespace.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/0_Namespaces/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/0_Namespaces/namespace.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/1_Nodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/2_Workloads/Deployments/yarp/yarp-deployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/2_Workloads/Deployments/yarp/yarp-deployment.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/2_Workloads/Deployments/yarp/yarp-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/2_Workloads/Deployments/yarp/yarp-deployment.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/2_Workloads/Pods/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Ingress/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Ingress/grpc_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Ingress/grpc_ingress.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Ingress/ingress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Ingress/ingress.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Ingress/web_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Ingress/web_ingress.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/api-server/api_server-service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/api-server/api_server-service.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/api-server/api_server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/api-server/api_server-service.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/web-server/web_server-service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/web-server/web_server-service.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/web-server/web_server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/web-server/web_server-service.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/yarp/yarp-service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/yarp/yarp-service.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/yarp/yarp-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/3_Network/Services/yarp/yarp-service.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/4_Storage/Persistent_Volume_Claims/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/4_Storage/Persistent_Volumes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/4_Storage/Storage_Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/4_Storage/Storage_Classes/deploy_storage_classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/4_Storage/Storage_Classes/deploy_storage_classes.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/5_Configuration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/6_Custom_Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/7_Helm_Releases/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/7_Helm_Releases/deploy-nginx-ingress-controller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/7_Helm_Releases/deploy-nginx-ingress-controller.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/7_Helm_Releases/import-helm-charts-to-acr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/7_Helm_Releases/import-helm-charts-to-acr.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/Deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/Deploy.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/PowerShell/TimeWarp.Charts/Apply-Manifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/PowerShell/TimeWarp.Charts/Apply-Manifest.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/PowerShell/TimeWarp.Charts/Deploy-Server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/PowerShell/TimeWarp.Charts/Deploy-Server.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/PowerShell/TimeWarp.Charts/TimeWarp.Charts.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/PowerShell/TimeWarp.Charts/TimeWarp.Charts.psm1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Kubernetes/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Kubernetes/deploy.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Model.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Model.mdj -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Pipelines/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Pipelines/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Pipelines/timewarp.software.com/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Pipelines/timewarp.software.com/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Pipelines/timewarp.software.com/Templates/build.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Pipelines/timewarp.software.com/Templates/deploy.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Pipelines/timewarp.software.com/timewarp.software.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Pipelines/timewarp.software.com/timewarp.software.yaml -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Ports.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Pulumi/Infrastructure/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Pulumi/Infrastructure/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/Pulumi/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/Pulumi/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/deprovision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/deprovision.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/provision-build-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/provision-build-deploy.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/rollout-restart-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/rollout-restart-all.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/DevOps/variables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/DevOps/variables.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Directory.Build.props -------------------------------------------------------------------------------- /TimeWarp.Architecture/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Directory.Build.targets -------------------------------------------------------------------------------- /TimeWarp.Architecture/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Directory.Packages.props -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/C4/.structurizr/eula.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/C4/.structurizr/eula.properties -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/C4/.structurizr/images/Diagram1-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/C4/.structurizr/images/Diagram1-thumbnail.png -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/C4/.structurizr/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/C4/.structurizr/images/thumbnail.png -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/C4/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/C4/docs/01-context.md: -------------------------------------------------------------------------------- 1 | ## Context 2 | 3 | Here is a description of my software system... 4 | 5 |  6 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/C4/workspace.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/C4/workspace.dsl -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/C4/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/C4/workspace.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/ApiDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/ApiDesign.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/ArchitecturalDecisionRecords/Approved/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/ArchitecturalDecisionRecords/ProjectStructureAndConventions/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/ArchitecturalDecisionRecords/Proposed/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/ComponentNamingAndOrganization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/ComponentNamingAndOrganization.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/Contribute.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/DirectoryStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/DirectoryStructure.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Features/Application/IsProcessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/Features/Application/IsProcessing.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Features/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Model.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/Model.mdj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Overview.md: -------------------------------------------------------------------------------- 1 | # Conceptual Documentation 2 | 3 | Most useful when studying. 4 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Testing/EndToEndTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/Testing/EndToEndTesting.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Testing/IntegrationTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Conceptual/Testing/IntegrationTesting.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Conceptual/Testing/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/HowToGuides/HowToPreventLocalCommitsToMaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/HowToGuides/HowToPreventLocalCommitsToMaster.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/HowToGuides/HowToRunOaktonCommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/HowToGuides/HowToRunOaktonCommands.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/HowToGuides/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/HowToGuides/Testing/HowToFilterTestsByName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/HowToGuides/Testing/HowToFilterTestsByName.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/HowToGuides/Testing/HowToFilterTestsByTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/HowToGuides/Testing/HowToFilterTestsByTags.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/HowToGuides/Testing/HowToWriteEndpointTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/HowToGuides/Testing/HowToWriteEndpointTest.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/HowToGuides/WebApiContracts/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/HowToGuides/WebApiContracts/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Reference/ApiEndpointSourceGenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Reference/ApiEndpointSourceGenerator.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Reference/CsharpCodingStandards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Reference/CsharpCodingStandards.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Reference/DotnetConventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Reference/DotnetConventions.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Reference/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Reference/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Reference/dependencies-with-nuget.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Reference/dependencies-with-nuget.puml -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Reference/dependencies.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Developer/Reference/dependencies.puml -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Developer/Tutorials/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/ReleaseNotes.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Roadmap.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/ArchitectureComparisons.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/ArchitectureComparisons.mdj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/css/bootstrap.css -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/css/jquery.bonsai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/css/jquery.bonsai.css -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/css/main.css -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.css -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.eot -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.html -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.ttf -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/icon-font/icons.woff -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/bootstrap.js -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/jquery-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/jquery-2.1.0.min.js -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/jquery.bonsai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/jquery.bonsai.js -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/less-1.7.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/assets/js/less-1.7.0.min.js -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/contents/diagrams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/contents/diagrams.html -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/contents/element_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/contents/element_index.html -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/contents/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/contents/navigation.html -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/StarUml/Generated/html-docs/index.html -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/TestStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/TestStructure.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Documentation/Tools.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Documentation/User/Overview.md: -------------------------------------------------------------------------------- 1 | # Users and Administrators 2 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/FixAnalyzerDebug.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/FixAnalyzerDebug.reg -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/001_Fix-FastEndpointSourceGenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/001_Fix-FastEndpointSourceGenerator.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/001_NavLink-Encapsulation-Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/001_NavLink-Encapsulation-Implementation.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/002_TimeWarpNavLink-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/002_TimeWarpNavLink-component.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/003_Add-Authentication-Support-To-TimeWarpNavLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/003_Add-Authentication-Support-To-TimeWarpNavLink.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/004_001_convert-weatherforecast-to-fastendpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/004_001_convert-weatherforecast-to-fastendpoints.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/004_002_remove-mediatr-from-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/004_002_remove-mediatr-from-api.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/004_003_implement-openapi-and-scalar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/004_003_implement-openapi-and-scalar.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/006_Implement-Endpoint-Source-Generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/006_Implement-Endpoint-Source-Generator.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/009_Fix-OneOf-Serialization-WeatherForecast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/009_Fix-OneOf-Serialization-WeatherForecast.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/012_Expand-RunTests-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/012_Expand-RunTests-Script.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/013_Create-TimeWarp-Automation-Contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/013_Create-TimeWarp-Automation-Contracts.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/014_Implement-RunApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/014_Implement-RunApplication.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/015_Implement-RunWindowsApplication-Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/015_Implement-RunWindowsApplication-Command.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/016_Remove-06-NewFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/016_Remove-06-NewFileTemplates.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/017_Rename-Readme-to-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/017_Rename-Readme-to-Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/018_Sync-Configurable-Files-from-Parent-Repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/018_Sync-Configurable-Files-from-Parent-Repo.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/022_Update-GitIgnore-To-Support-Merge-Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/022_Update-GitIgnore-To-Support-Merge-Strategy.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/023_Create-Architectural-Decision-Records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/023_Create-Architectural-Decision-Records.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/024_Migrate-To-Hybrid-Task-Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/024_Migrate-To-Hybrid-Task-Management.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/025_Create-File-Naming-Convention-Analysis-Report/Task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/025_Create-File-Naming-Convention-Analysis-Report/Task.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/030_Fix-Web-Spa-TypeScript-Directory-Naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/030_Fix-Web-Spa-TypeScript-Directory-Naming.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/031_Fix-Assembly-Marker-Inconsistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/031_Fix-Assembly-Marker-Inconsistency.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/033_Fix-Api-Contracts-Directory-Naming-And-Semantics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/033_Fix-Api-Contracts-Directory-Naming-And-Semantics.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/036_Fix-Directory-Build-Props-Linux-DateTime-Issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/036_Fix-Directory-Build-Props-Linux-DateTime-Issue.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/037_Migrate-From-MediatR-To-TimeWarp-Mediator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/037_Migrate-From-MediatR-To-TimeWarp-Mediator.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/039_Migrate-From-FluentAssertions-To-Shouldly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/039_Migrate-From-FluentAssertions-To-Shouldly.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/043_Remove-AutoMapper-Document-Mapperly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/043_Remove-AutoMapper-Document-Mapperly.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Done/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Done/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/004_migrate-api-to-fastendpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/004_migrate-api-to-fastendpoints.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/005_Create-Simplified-WeatherForecast-Endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/005_Create-Simplified-WeatherForecast-Endpoint.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/007_Fix-Source-Generator-Output-Location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/007_Fix-Source-Generator-Output-Location.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/011_Create-TimeWarp-Automation-Library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/011_Create-TimeWarp-Automation-Library.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/019_Enhance-Sync-Config-With-Advanced-Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/019_Enhance-Sync-Config-With-Advanced-Features.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/038_Build-Dev-Container-For-Claude-Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/038_Build-Dev-Container-For-Claude-Code.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/041_Methodically-Update-NuGet-Packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/041_Methodically-Update-NuGet-Packages.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/042_Migrate-From-Swashbuckle-To-Scalar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/042_Migrate-From-Swashbuckle-To-Scalar.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/044_Remove-Hungarian-A-Prefix-From-Parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/044_Remove-Hungarian-A-Prefix-From-Parameters.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/InProgress/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/InProgress/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/Task-Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/Task-Template.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/TaskExamples/ToastNotification-UserStory-Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/TaskExamples/ToastNotification-UserStory-Example.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/008_Create-FastEndpointSourceGenerator-Tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/008_Create-FastEndpointSourceGenerator-Tests.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/010_Fix-SpaTestApplication-ConfigureServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/010_Fix-SpaTestApplication-ConfigureServices.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/020_Create-TimeWarp-Tool-And-Migrate-Sync-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/020_Create-TimeWarp-Tool-And-Migrate-Sync-Script.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/026_Fix-Critical-Kanban-Inconsistencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/026_Fix-Critical-Kanban-Inconsistencies.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/027_Create-File-Naming-Convention-ADR-And-Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/027_Create-File-Naming-Convention-ADR-And-Documentation.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/028_Implement-Automated-Naming-Convention-Checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/028_Implement-Automated-Naming-Convention-Checks.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/034_Review-DevOps-Folder-Relevance-And-Modernization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/034_Review-DevOps-Folder-Relevance-And-Modernization.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/035_Create-Directory-Naming-Convention-ADR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/035_Create-Directory-Naming-Convention-ADR.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/040_Configure-Aspire-Test-Host-Api-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/040_Configure-Aspire-Test-Host-Api-Server.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Kanban/ToDo/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Kanban/ToDo/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/NpmOutdated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/NpmOutdated.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/NuGet.config -------------------------------------------------------------------------------- /TimeWarp.Architecture/Priority-Analysis-Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Priority-Analysis-Report.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/ReadMe.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Run.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/RunDocker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/RunDocker.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/RunNpmInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/RunNpmInstall.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/RunRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/RunRelease.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/RunTailwind.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/RunTailwind.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/RunTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/RunTests.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Samples/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/BuildDependencyDiagram.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/BuildDependencyDiagram.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Describe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Describe.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Get-NextTaskNumber.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Get-NextTaskNumber.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Git/CountLinesByAuthor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Git/CountLinesByAuthor.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Git/Stats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Git/Stats.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Git/SummarizeGitBlame.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Git/SummarizeGitBlame.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Postgres/Add-Migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Postgres/Add-Migration.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Postgres/Drop-Database.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Postgres/Drop-Database.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Postgres/EfSharedVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Postgres/EfSharedVariables.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Postgres/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Postgres/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Postgres/Reset-DatabaseMigrations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Postgres/Reset-DatabaseMigrations.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Postgres/Update-Database.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Postgres/Update-Database.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/RunCosmosDbEmulator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/RunCosmosDbEmulator.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/Windows/EnableLongPaths.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/Windows/EnableLongPaths.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Scripts/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Scripts/profile.ps1 -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.Analyzers/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.Analyzers/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.Analyzers/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.Analyzers/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.Attributes/.idea/.idea.TimeWarp.Architecture.dir/.idea/.name: -------------------------------------------------------------------------------- 1 | TimeWarp.Architecture -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.Attributes/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.Attributes/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.SourceGenerator/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Analyzers/TimeWarp.Architecture.SourceGenerator/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Application/Abstractions/ICurrenUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Application/Abstractions/ICurrenUserService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Application/Abstractions/IDateTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Application/Abstractions/IDateTimeService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Application/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Application/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Application/Common.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Application/Common.Application.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Application/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | // global using xyz; 2 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/ApiRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/ApiRequestExtensions.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BaseMessage.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BasePagedRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BasePagedRequest.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BaseRequest.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BaseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/BaseResponse.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/HttpVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/HttpVerb.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IApiRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IApiRequest.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IAuthApiRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IAuthApiRequest.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IBaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IBaseMessage.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IBaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IBaseRequest.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IOpenDataQueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IOpenDataQueryParameters.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IQueryStringRouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/IQueryStringRouteProvider.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Base/ListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Base/ListResponse.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Behaviors/FluentValidationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Behaviors/FluentValidationBehavior.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Common.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Common.Contracts.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Configuration/ServiceNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Configuration/ServiceNames.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IAuthApiRequestMixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IAuthApiRequestMixin.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IAuthApiRequestMixin.mixin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IAuthApiRequestMixin.mixin -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IOpenDataQueryParametersMixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IOpenDataQueryParametersMixin.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IQueryStringRouteProviderMixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IQueryStringRouteProviderMixin.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/IQueryStringRouteProviderMixin.mixin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/RouteMixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/RouteMixin.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/RouteMixin.mixin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Mixins/RouteMixin.mixin -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Services/IApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Services/IApiService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Types/FileResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Types/FileResponse.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Types/MockResponseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Types/MockResponseFactory.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Types/SharedProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Types/SharedProblemDetails.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Contracts/Validators/PhoneNumberValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Contracts/Validators/PhoneNumberValidator.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Domain/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Domain/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Domain/Common.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Domain/Common.Domain.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Domain/Entities/Base/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Domain/Entities/Base/BaseEntity.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Domain/Entities/Base/BaseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Domain/Entities/Base/BaseEvent.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Domain/Entities/Base/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Domain/Entities/Base/ValueObject.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Domain/Enumeration/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Domain/Enumeration/Enumeration.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Domain/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Domain/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Infrastructure/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Infrastructure/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Infrastructure/Common.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Infrastructure/Common.Infrastructure.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Infrastructure/Common_Infrastructure_Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Infrastructure/Common_Infrastructure_Module.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Infrastructure/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Infrastructure/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Infrastructure/Services/CurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Infrastructure/Services/CurrentUserService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Infrastructure/Services/DateTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Infrastructure/Services/DateTimeService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/Base/BaseEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/Base/BaseEndpoint.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/Base/BaseFastEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/Base/BaseFastEndpoint.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/Common.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/Common.Server.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/CommonServerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/CommonServerModule.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/CorsPolicy/CorsPolicies/AnyPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/CorsPolicy/CorsPolicies/AnyPolicy.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/CorsPolicy/CorsPolicies/ExamplePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/CorsPolicy/CorsPolicies/ExamplePolicy.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/CorsPolicy/CorsPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/CorsPolicy/CorsPolicy.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/Extensions/MvcBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/Extensions/MvcBuilderExtensions.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/Extensions/ServiceUriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/Extensions/ServiceUriHelper.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/IAspNetModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/IAspNetModule.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/Common/Common.Server/IAspNetProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/Common/Common.Server/IAspNetProgram.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/Api.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/Api.Application.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/ApiApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/ApiApplicationModule.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Application/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Contracts/Api.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Contracts/Api.Contracts.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Contracts/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Contracts/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Contracts/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Contracts/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Domain/Api.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Domain/Api.Domain.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Domain/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Domain/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Domain/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Domain/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Infrastructure/Api.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Infrastructure/Api.Infrastructure.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Infrastructure/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Infrastructure/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Infrastructure/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Infrastructure/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Api.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Api.Server.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Dockerfile -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Features/Base/BaseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Features/Base/BaseError.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Features/Base/BaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Features/Base/BaseException.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/GenericPipelineBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/GenericPipelineBehavior.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Program.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/appsettings.Development.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/appsettings.Kubernetes_Docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/appsettings.Kubernetes_Docker.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/appsettings.Production.json: -------------------------------------------------------------------------------- 1 | { 2 | // See corresponding C# classes for documentation. 3 | } 4 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Api/Api.Server/appsettings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/Aspire.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/Aspire.AppHost.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/Constants.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/Program.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/ResourceBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/ResourceBuilderExtensions.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.AppHost/appsettings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.ServiceDefaults/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Aspire/Aspire.ServiceDefaults/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Application/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Application/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Application/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Application/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Application/Grpc.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Application/Grpc.Application.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/Features/Hello/HelloRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/Features/Hello/HelloRequest.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/Grpc.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Contracts/Grpc.Contracts.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Domain/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Domain/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Domain/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Domain/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Domain/Grpc.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Domain/Grpc.Domain.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Infrastructure/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Infrastructure/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Infrastructure/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Infrastructure/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/.filenesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/.filenesting.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Dockerfile -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Features/Hello/HelloService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Features/Hello/HelloService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Grpc.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Grpc.Server.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Program.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Protos/greet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Protos/greet.proto -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Services/GreeterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/Services/GreeterService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/appsettings.Development.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/appsettings.Production.json: -------------------------------------------------------------------------------- 1 | { 2 | // See corresponding C# classes for documentation. 3 | } 4 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Grpc/Grpc.Server/appsettings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Application/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Application/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Application/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Application/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Application/Web.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Application/Web.Application.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Extensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/Admin/Users/UserIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/Admin/Users/UserIds.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/Analytics/TrackEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/Analytics/TrackEvent.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/Hello/Hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/Hello/Hello.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/V2/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Features/V2/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/CreateCommand.mixin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/CreateCommand.mixin -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/CreateCommandMixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/CreateCommandMixin.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/DeleteCommand.mixin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/DeleteCommand.mixin -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/GetListQuery.mixin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/GetListQuery.mixin -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/GetQuery.mixin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/GetQuery.mixin -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/UpdateCommand.mixin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Mixins/UpdateCommand.mixin -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Types/SignalRResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Types/SignalRResult.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Web.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Contracts/Web.Contracts.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Abstractions/IInvariants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Abstractions/IInvariants.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/Catalog/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/Catalog/Category.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/Catalog/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/Catalog/Product.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/Profile/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/Profile/Profile.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/X_Aggregate/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Aggregates/X_Aggregate/Requests/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Web.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Domain/Web.Domain.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Infrastructure/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Infrastructure/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Infrastructure/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Infrastructure/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Infrastructure/Persistence/Migrations/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Infrastructure/Persistence/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Components/App.razor -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Components/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using static Microsoft.AspNetCore.Components.Web.RenderMode 2 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Configuration/SampleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Configuration/SampleOptions.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Dockerfile -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Features/Hello/HelloEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Features/Hello/HelloEndpoint.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/GlobalUsings.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Hubs/ChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Hubs/ChatHub.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Mixins/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Modules/CosmosDbModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Modules/CosmosDbModule.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Modules/PostgresDbModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Modules/PostgresDbModule.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Program.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Services/ChatHubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Services/ChatHubService.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Services/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Web.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/Web.Server.csproj -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "DetailedErrors": true 3 | } 4 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/appsettings.Production.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Server/appsettings.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/.eslintrc.js -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/.prettierignore -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/.prettierrc.json -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/AssemblyMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/AssemblyMarker.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Base/DisplayComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Base/DisplayComponent.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Base/EditMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Base/EditMode.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Base/ParentComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Base/ParentComponent.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/Button.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/Button.razor -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/Button.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/Button.razor.cs -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/HyperLink.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/HyperLink.razor -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/HyperLink.razor.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/Text.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Elements/Text.razor -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Layouts/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Layouts/MainLayout.razor -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Overview.md -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Pages/NotificationBanner.razor: -------------------------------------------------------------------------------- 1 | @namespace TimeWarp.Architecture.Components 2 | -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Pages/SiteFooter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimeWarpEngineering/timewarp-architecture/HEAD/TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Pages/SiteFooter.razor -------------------------------------------------------------------------------- /TimeWarp.Architecture/Source/ContainerApps/Web/Web.Spa/Components/Pages/SitePage/LeftPane_Footer.razor: -------------------------------------------------------------------------------- 1 | @code { 2 | 3 | } 4 |