├── .agent ├── rules │ ├── backend │ │ ├── api-endpoints.md │ │ ├── api-tests.md │ │ ├── backend.md │ │ ├── commands.md │ │ ├── database-migrations.md │ │ ├── domain-modeling.md │ │ ├── external-integrations.md │ │ ├── queries.md │ │ ├── repositories.md │ │ ├── strongly-typed-ids.md │ │ └── telemetry-events.md │ ├── developer-cli │ │ └── developer-cli.md │ ├── end-to-end-tests │ │ └── end-to-end-tests.md │ ├── frontend │ │ ├── form-with-validation.md │ │ ├── frontend.md │ │ ├── known-accepted-warnings.md │ │ ├── tanstack-query-api-integration.md │ │ └── translations.md │ ├── infrastructure │ │ └── infrastructure.md │ └── product-management │ │ ├── AzureDevOps.md │ │ ├── Jira.md │ │ ├── Linear.md │ │ └── Markdown.md └── workflows │ ├── commit.md │ ├── modes │ ├── agentic-workflow.md │ ├── coordinator.md │ └── tech-lead.md │ ├── prepare-pull-request.md │ ├── process │ ├── create-prd.md │ ├── implement-end-to-end-tests.md │ ├── implement-feature.md │ ├── implement-task.md │ ├── review-end-to-end-tests.md │ └── review-task.md │ └── update-ai-rules.md ├── .claude ├── agentic-workflow │ ├── mcp-configs │ │ └── chrome-devtools.json │ └── system-prompts │ │ ├── backend-engineer.txt │ │ ├── backend-reviewer.txt │ │ ├── coordinator.txt │ │ ├── frontend-engineer.txt │ │ ├── frontend-reviewer.txt │ │ ├── pair-programmer.txt │ │ ├── qa-engineer.txt │ │ ├── qa-reviewer.txt │ │ └── tech-lead.txt ├── agents │ ├── backend-engineer.md │ ├── backend-reviewer.md │ ├── frontend-engineer.md │ ├── frontend-reviewer.md │ ├── pair-programmer.md │ ├── parallel-tool-runner.md │ ├── qa-engineer.md │ └── qa-reviewer.md ├── commands │ ├── commit.md │ ├── modes │ │ ├── agentic-workflow.md │ │ ├── coordinator.md │ │ └── tech-lead.md │ ├── prepare-pull-request.md │ ├── process │ │ ├── create-prd.md │ │ ├── implement-end-to-end-tests.md │ │ ├── implement-feature.md │ │ ├── implement-task.md │ │ ├── review-end-to-end-tests.md │ │ └── review-task.md │ └── update-ai-rules.md ├── hooks │ ├── post-tool-use-bash.sh │ └── pre-tool-use-bash.sh ├── rules │ ├── backend │ │ ├── api-endpoints.md │ │ ├── api-tests.md │ │ ├── backend.md │ │ ├── commands.md │ │ ├── database-migrations.md │ │ ├── domain-modeling.md │ │ ├── external-integrations.md │ │ ├── queries.md │ │ ├── repositories.md │ │ ├── strongly-typed-ids.md │ │ └── telemetry-events.md │ ├── developer-cli │ │ └── developer-cli.md │ ├── end-to-end-tests │ │ └── end-to-end-tests.md │ ├── frontend │ │ ├── form-with-validation.md │ │ ├── frontend.md │ │ ├── known-accepted-warnings.md │ │ ├── tanstack-query-api-integration.md │ │ └── translations.md │ ├── infrastructure │ │ └── infrastructure.md │ └── product-management │ │ ├── AzureDevOps.md │ │ ├── Jira.md │ │ ├── Linear.md │ │ └── Markdown.md ├── samples │ ├── 1-backend-sample.md │ ├── 2-frontend-sample.md │ └── example-prd.md └── settings.json ├── .cursor ├── rules │ ├── backend │ │ ├── api-endpoints.mdc │ │ ├── api-tests.mdc │ │ ├── backend.mdc │ │ ├── commands.mdc │ │ ├── database-migrations.mdc │ │ ├── domain-modeling.mdc │ │ ├── external-integrations.mdc │ │ ├── queries.mdc │ │ ├── repositories.mdc │ │ ├── strongly-typed-ids.mdc │ │ └── telemetry-events.mdc │ ├── developer-cli │ │ └── developer-cli.mdc │ ├── end-to-end-tests │ │ └── end-to-end-tests.mdc │ ├── frontend │ │ ├── form-with-validation.mdc │ │ ├── frontend.mdc │ │ ├── known-accepted-warnings.mdc │ │ ├── tanstack-query-api-integration.mdc │ │ └── translations.mdc │ ├── infrastructure │ │ └── infrastructure.mdc │ ├── product-management │ │ ├── AzureDevOps.mdc │ │ ├── Jira.mdc │ │ ├── Linear.mdc │ │ └── Markdown.mdc │ └── workflows │ │ ├── commit.mdc │ │ ├── modes │ │ ├── agentic-workflow.mdc │ │ ├── coordinator.mdc │ │ └── tech-lead.mdc │ │ ├── prepare-pull-request.mdc │ │ ├── process │ │ ├── create-prd.mdc │ │ ├── implement-end-to-end-tests.mdc │ │ ├── implement-feature.mdc │ │ ├── implement-task.mdc │ │ ├── review-end-to-end-tests.mdc │ │ └── review-task.mdc │ │ └── update-ai-rules.mdc └── samples │ ├── 1-backend-sample.md │ ├── 2-frontend-sample.md │ └── example-prd.md ├── .gitattributes ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── copilot-instructions.md ├── copilot │ ├── rules │ │ ├── backend │ │ │ ├── api-endpoints.md │ │ │ ├── api-tests.md │ │ │ ├── backend.md │ │ │ ├── commands.md │ │ │ ├── database-migrations.md │ │ │ ├── domain-modeling.md │ │ │ ├── external-integrations.md │ │ │ ├── queries.md │ │ │ ├── repositories.md │ │ │ ├── strongly-typed-ids.md │ │ │ └── telemetry-events.md │ │ ├── developer-cli │ │ │ └── developer-cli.md │ │ ├── end-to-end-tests │ │ │ └── end-to-end-tests.md │ │ ├── frontend │ │ │ ├── form-with-validation.md │ │ │ ├── frontend.md │ │ │ ├── known-accepted-warnings.md │ │ │ ├── tanstack-query-api-integration.md │ │ │ └── translations.md │ │ ├── infrastructure │ │ │ └── infrastructure.md │ │ └── product-management │ │ │ ├── AzureDevOps.md │ │ │ ├── Jira.md │ │ │ ├── Linear.md │ │ │ └── Markdown.md │ └── workflows │ │ ├── commit.md │ │ ├── modes │ │ ├── agentic-workflow.md │ │ ├── coordinator.md │ │ └── tech-lead.md │ │ ├── prepare-pull-request.md │ │ ├── process │ │ ├── create-prd.md │ │ ├── implement-end-to-end-tests.md │ │ ├── implement-feature.md │ │ ├── implement-task.md │ │ ├── review-end-to-end-tests.md │ │ └── review-task.md │ │ └── update-ai-rules.md ├── dependabot.yml └── workflows │ ├── _deploy-container.yml │ ├── _deploy-infrastructure.yml │ ├── _migrate-database.yml │ ├── account-management.yml │ ├── app-gateway.yml │ ├── back-office.yml │ ├── cloud-infrastructure.yml │ └── pull-request-conventions.yml ├── .gitignore ├── .mcp.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .windsurf ├── rules │ ├── backend │ │ ├── api-endpoints.md │ │ ├── api-tests.md │ │ ├── backend.md │ │ ├── commands.md │ │ ├── database-migrations.md │ │ ├── domain-modeling.md │ │ ├── external-integrations.md │ │ ├── queries.md │ │ ├── repositories.md │ │ ├── strongly-typed-ids.md │ │ └── telemetry-events.md │ ├── developer-cli │ │ └── developer-cli.md │ ├── end-to-end-tests │ │ └── end-to-end-tests.md │ ├── frontend │ │ ├── form-with-validation.md │ │ ├── frontend.md │ │ ├── known-accepted-warnings.md │ │ ├── tanstack-query-api-integration.md │ │ └── translations.md │ ├── infrastructure │ │ └── infrastructure.md │ └── product-management │ │ ├── AzureDevOps.md │ │ ├── Jira.md │ │ ├── Linear.md │ │ └── Markdown.md ├── samples │ ├── 1-backend-sample.md │ ├── 2-frontend-sample.md │ └── example-prd.md └── workflows │ ├── commit.md │ ├── modes │ ├── agentic-workflow.md │ ├── coordinator.md │ └── tech-lead.md │ ├── prepare-pull-request.md │ ├── process │ ├── create-prd.md │ ├── implement-end-to-end-tests.md │ ├── implement-feature.md │ ├── implement-task.md │ ├── review-end-to-end-tests.md │ └── review-task.md │ └── update-ai-rules.md ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── application ├── .editorconfig ├── AppGateway │ ├── ApiAggregation │ │ ├── ApiAggregationEndpoints.cs │ │ ├── ApiAggregationService.cs │ │ └── ApiExplorerRouteFilter.cs │ ├── AppGateway.csproj │ ├── Dockerfile │ ├── Filters │ │ └── ClusterDestinationConfigFilter.cs │ ├── Middleware │ │ └── AuthenticationCookieMiddleware.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Transformations │ │ ├── BlockInternalApiTransform.cs │ │ ├── HttpStrictTransportSecurityTransform.cs │ │ ├── ManagedIdentityTransform.cs │ │ └── SharedAccessSignatureRequestTransform.cs │ └── appsettings.json ├── AppHost │ ├── AppHost.csproj │ ├── ConfigurationExtensions.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SecretManagerHelper.cs │ ├── SslCertificateManager.cs │ └── appsettings.json ├── Directory.Packages.props ├── PlatformPlatform.slnx ├── PlatformPlatform.slnx.DotSettings ├── README.md ├── account-management │ ├── AccountManagement.slnf │ ├── Api │ │ ├── AccountManagement.Api.csproj │ │ ├── Dockerfile │ │ ├── Endpoints │ │ │ ├── AuthenticationEndpoints.cs │ │ │ ├── SignupEndpoints.cs │ │ │ ├── TenantEndpoints.cs │ │ │ └── UserEndpoints.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── appsettings.json │ ├── Core │ │ ├── AccountManagement.csproj │ │ ├── Configuration.cs │ │ ├── Database │ │ │ ├── AccountManagementDbContext.cs │ │ │ └── Migrations │ │ │ │ ├── 20250217000000_Initial.cs │ │ │ │ ├── 20250402000000_CascadeDeleteLogins.cs │ │ │ │ └── 20250804001944_AddTenantLogo.cs │ │ ├── Features │ │ │ ├── Authentication │ │ │ │ ├── Commands │ │ │ │ │ ├── CompleteLogin.cs │ │ │ │ │ ├── Logout.cs │ │ │ │ │ ├── RefreshAuthenticationTokens.cs │ │ │ │ │ ├── StartLogin.cs │ │ │ │ │ └── SwitchTenant.cs │ │ │ │ └── Domain │ │ │ │ │ ├── Login.cs │ │ │ │ │ ├── LoginConfiguration.cs │ │ │ │ │ └── LoginRepository.cs │ │ │ ├── EmailConfirmations │ │ │ │ ├── Commands │ │ │ │ │ ├── CompleteEmailConfirmation.cs │ │ │ │ │ ├── ResendEmailConfirmationCode.cs │ │ │ │ │ └── StartEmailConfirmation.cs │ │ │ │ └── Domain │ │ │ │ │ ├── EmailConfirmation.cs │ │ │ │ │ ├── EmailConfirmationConfiguration.cs │ │ │ │ │ ├── EmailConfirmationRepository.cs │ │ │ │ │ └── EmailConfirmationTypes.cs │ │ │ ├── Signups │ │ │ │ └── Commands │ │ │ │ │ ├── CompleteSignup.cs │ │ │ │ │ └── StartSignup.cs │ │ │ ├── TelemetryEvents.cs │ │ │ ├── Tenants │ │ │ │ ├── Commands │ │ │ │ │ ├── CreateTenant.cs │ │ │ │ │ ├── DeleteTenant.cs │ │ │ │ │ ├── RemoveTenantLogo.cs │ │ │ │ │ ├── UpdateCurrentTenant.cs │ │ │ │ │ └── UpdateTenantLogo.cs │ │ │ │ ├── Domain │ │ │ │ │ ├── Tenant.cs │ │ │ │ │ ├── TenantConfiguration.cs │ │ │ │ │ ├── TenantEvents.cs │ │ │ │ │ ├── TenantRepository.cs │ │ │ │ │ └── TenantTypes.cs │ │ │ │ ├── EventHandlers │ │ │ │ │ └── TenantCreatedEventHandler.cs │ │ │ │ └── Queries │ │ │ │ │ ├── GetCurrentTenant.cs │ │ │ │ │ └── GetTenantsForUser.cs │ │ │ └── Users │ │ │ │ ├── Commands │ │ │ │ ├── BulkDeleteUsers.cs │ │ │ │ ├── ChangeLocale.cs │ │ │ │ ├── ChangeUserRole.cs │ │ │ │ ├── CreateUser.cs │ │ │ │ ├── DeclineInvitation.cs │ │ │ │ ├── DeleteUser.cs │ │ │ │ ├── InviteUser.cs │ │ │ │ ├── RemoveAvatar.cs │ │ │ │ ├── UpdateAvatar.cs │ │ │ │ └── UpdateCurrentUser.cs │ │ │ │ ├── Domain │ │ │ │ ├── User.cs │ │ │ │ ├── UserConfiguration.cs │ │ │ │ ├── UserRepository.cs │ │ │ │ └── UserTypes.cs │ │ │ │ ├── Queries │ │ │ │ ├── GetCurrentUser.cs │ │ │ │ ├── GetUserById.cs │ │ │ │ ├── GetUserSummary.cs │ │ │ │ └── GetUsers.cs │ │ │ │ └── Shared │ │ │ │ ├── AvatarUpdater.cs │ │ │ │ └── UserInfoFactory.cs │ │ └── Integrations │ │ │ └── Gravatar │ │ │ └── GravatarClient.cs │ ├── Directory.Build.props │ ├── Tests │ │ ├── AccountManagement.Tests.csproj │ │ ├── ArchitectureTests │ │ │ ├── IdPrefixForAllStronglyTypedUlidTests.cs │ │ │ └── PublicClassesTests.cs │ │ ├── Authentication │ │ │ ├── CompleteLoginTests.cs │ │ │ ├── LogoutTests.cs │ │ │ ├── StartLoginTests.cs │ │ │ └── SwitchTenantTests.cs │ │ ├── DatabaseSeeder.cs │ │ ├── EndpointBaseTest.cs │ │ ├── SharedKernel │ │ │ └── CustomExceptionHandlingTests.cs │ │ ├── Signups │ │ │ ├── CompleteSignupTests.cs │ │ │ └── StartSignupTests.cs │ │ ├── Tenants │ │ │ ├── DeleteTenantTests.cs │ │ │ ├── GetCurrentTenantTests.cs │ │ │ ├── GetTenantsForUserTests.cs │ │ │ ├── RemoveTenantLogoTests.cs │ │ │ ├── UpdateCurrentTenantTests.cs │ │ │ └── UpdateTenantLogoTests.cs │ │ ├── Users │ │ │ ├── BulkDeleteUsersTests.cs │ │ │ ├── ChangeLocaleTests.cs │ │ │ ├── ChangeUserRoleTests.cs │ │ │ ├── DeclineInvitationTests.cs │ │ │ ├── DeleteUserTests.cs │ │ │ ├── Domain │ │ │ │ └── UserTests.cs │ │ │ ├── GetCurrentUserTests.cs │ │ │ ├── GetUserByIdTests.cs │ │ │ ├── GetUsersTests.cs │ │ │ ├── InviteUserTests.cs │ │ │ └── UpdateCurrentUserTests.cs │ │ └── appsettings.json │ ├── WebApp │ │ ├── AccountManagement.WebApp.esproj │ │ ├── bootstrap.tsx │ │ ├── federated-modules │ │ │ ├── common │ │ │ │ ├── AcceptInvitationDialog.tsx │ │ │ │ ├── AuthSyncModal.tsx │ │ │ │ ├── LocaleSwitcher.tsx │ │ │ │ ├── SupportButton.tsx │ │ │ │ ├── SupportDialog.tsx │ │ │ │ ├── SwitchingAccountLoader.tsx │ │ │ │ ├── TenantSelector.tsx │ │ │ │ ├── ThemeModeSelector.tsx │ │ │ │ └── UserProfileModal.tsx │ │ │ ├── sideMenu │ │ │ │ ├── FederatedSideMenu.tsx │ │ │ │ ├── MobileMenu.tsx │ │ │ │ └── NavigationMenuItems.tsx │ │ │ └── topMenu │ │ │ │ ├── AvatarButton.tsx │ │ │ │ └── FederatedTopMenu.tsx │ │ ├── lingui.config.ts │ │ ├── main.tsx │ │ ├── package.json │ │ ├── public │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── react-env.d.ts │ │ ├── routes │ │ │ ├── (index) │ │ │ │ └── index.tsx │ │ │ ├── __root.tsx │ │ │ ├── admin │ │ │ │ ├── account │ │ │ │ │ ├── -components │ │ │ │ │ │ └── DeleteAccountConfirmation.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── users │ │ │ │ │ ├── -components │ │ │ │ │ ├── ChangeUserRoleDialog.tsx │ │ │ │ │ ├── DeleteUserDialog.tsx │ │ │ │ │ ├── InviteUserDialog.tsx │ │ │ │ │ ├── TenantNameRequiredDialog.tsx │ │ │ │ │ ├── UserProfileSidePane.tsx │ │ │ │ │ ├── UserQuerying.tsx │ │ │ │ │ ├── UserTable.tsx │ │ │ │ │ └── UserToolbar.tsx │ │ │ │ │ ├── -hooks │ │ │ │ │ └── useInfiniteUsers.ts │ │ │ │ │ └── index.tsx │ │ │ ├── login │ │ │ │ ├── -shared │ │ │ │ │ └── loginState.ts │ │ │ │ ├── index.tsx │ │ │ │ └── verify.tsx │ │ │ └── signup │ │ │ │ ├── -shared │ │ │ │ └── signupState.ts │ │ │ │ ├── index.tsx │ │ │ │ └── verify.tsx │ │ ├── rsbuild.config.ts │ │ ├── shared │ │ │ ├── components │ │ │ │ ├── ErrorMessage.tsx │ │ │ │ ├── HeroImage.tsx │ │ │ │ ├── PublicFooter.tsx │ │ │ │ ├── PublicNavigation.tsx │ │ │ │ └── topMenu │ │ │ │ │ └── index.tsx │ │ │ ├── hooks │ │ │ │ └── useSwitchTenant.tsx │ │ │ ├── images │ │ │ │ ├── hero-desktop-blur.webp │ │ │ │ ├── hero-desktop-xl.webp │ │ │ │ ├── hero-mobile-blur.webp │ │ │ │ ├── hero-mobile-xl.webp │ │ │ │ ├── logo-mark.svg │ │ │ │ ├── logo-wrap.svg │ │ │ │ └── powered-by.svg │ │ │ ├── layouts │ │ │ │ └── HorizontalHeroLayout.tsx │ │ │ ├── lib │ │ │ │ ├── api │ │ │ │ │ ├── AccountManagement.Api.json │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── userRole.ts │ │ │ │ │ └── userStatus.ts │ │ │ │ └── router │ │ │ │ │ └── router.tsx │ │ │ └── translations │ │ │ │ └── locale │ │ │ │ ├── da-DK.po │ │ │ │ └── en-US.po │ │ ├── tailwind.config.ts │ │ ├── tests │ │ │ ├── e2e │ │ │ │ ├── csp-nonce-flows.spec.ts │ │ │ │ ├── localization-flows.spec.ts │ │ │ │ ├── login-flows.spec.ts │ │ │ │ ├── mobile-view-flows.spec.ts │ │ │ │ ├── permission-based-ui-flows.spec.ts │ │ │ │ ├── signup-flows.spec.ts │ │ │ │ ├── tenant-switching-flows.spec.ts │ │ │ │ ├── theme-flows.spec.ts │ │ │ │ └── user-management-flows.spec.ts │ │ │ ├── playwright.config.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── tsr.config.json │ └── Workers │ │ ├── AccountManagement.Workers.csproj │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── appsettings.json ├── back-office │ ├── Api │ │ ├── BackOffice.Api.csproj │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── appsettings.json │ ├── BackOffice.slnf │ ├── Core │ │ ├── BackOffice.csproj │ │ ├── Configuration.cs │ │ ├── Database │ │ │ ├── BackOfficeDbContext.cs │ │ │ └── Migrations │ │ │ │ └── 20250217000000_Initial.cs │ │ └── Features │ │ │ └── TelemetryEvents.cs │ ├── Directory.Build.props │ ├── Tests │ │ ├── ArchitectureTests │ │ │ ├── IdPrefixForAllStronglyTypedUlidTests.cs │ │ │ └── PublicClassesTests.cs │ │ ├── BackOffice.Tests.csproj │ │ ├── DatabaseSeeder.cs │ │ ├── EndpointBaseTest.cs │ │ └── appsettings.json │ ├── WebApp │ │ ├── BackOffice.WebApp.esproj │ │ ├── bootstrap.tsx │ │ ├── lingui.config.ts │ │ ├── main.tsx │ │ ├── package.json │ │ ├── public │ │ │ └── index.html │ │ ├── react-env.d.ts │ │ ├── routes │ │ │ ├── __root.tsx │ │ │ └── back-office │ │ │ │ └── index.tsx │ │ ├── rsbuild.config.ts │ │ ├── shared │ │ │ ├── components │ │ │ │ └── topMenu │ │ │ │ │ └── index.tsx │ │ │ ├── lib │ │ │ │ ├── api │ │ │ │ │ ├── BackOffice.Api.json │ │ │ │ │ └── client.ts │ │ │ │ └── router │ │ │ │ │ └── router.tsx │ │ │ └── translations │ │ │ │ └── locale │ │ │ │ ├── da-DK.po │ │ │ │ └── en-US.po │ │ ├── tailwind.config.ts │ │ ├── tests │ │ │ ├── e2e │ │ │ │ └── homepage.spec.ts │ │ │ ├── playwright.config.ts │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── tsr.config.json │ └── Workers │ │ ├── BackOffice.Workers.csproj │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── appsettings.json ├── biome.json ├── dotnet-tools.json ├── global.json ├── package-lock.json ├── package.json ├── shared-kernel │ ├── Directory.Build.props │ ├── SharedKernel │ │ ├── Antiforgery │ │ │ └── AntiforgeryMiddleware.cs │ │ ├── ApiResults │ │ │ ├── ApiResult.cs │ │ │ └── ApiResultExtensions.cs │ │ ├── Authentication │ │ │ ├── AuthenticationTokenHttpKeys.cs │ │ │ ├── OneTimePasswordHelper.cs │ │ │ ├── TokenGeneration │ │ │ │ ├── AccessTokenGenerator.cs │ │ │ │ ├── AuthenticationTokenService.cs │ │ │ │ ├── RefreshTokenGenerator.cs │ │ │ │ ├── RefreshTokenId.cs │ │ │ │ └── SecurityTokenDescriptorExtensions.cs │ │ │ ├── TokenSigning │ │ │ │ ├── AzureTokenSigningClient.cs │ │ │ │ ├── DevelopmentTokenSigningClient.cs │ │ │ │ └── ITokenSigningClient.cs │ │ │ └── UserInfo.cs │ │ ├── Configuration │ │ │ ├── ApiDependencyConfiguration.cs │ │ │ ├── SharedDependencyConfiguration.cs │ │ │ ├── SharedInfrastructureConfiguration.cs │ │ │ └── WorkerDependencyConfiguration.cs │ │ ├── Cqrs │ │ │ ├── ICommand.cs │ │ │ └── Result.cs │ │ ├── Database │ │ │ └── DatabaseMigrationService.cs │ │ ├── Domain │ │ │ ├── AggregateRoot.cs │ │ │ ├── AudibleEntity.cs │ │ │ ├── Entity.cs │ │ │ ├── EntityEqualityComparer.cs │ │ │ ├── IAppendRepository.cs │ │ │ ├── IAuditableEntity.cs │ │ │ ├── IBulkAddRepository.cs │ │ │ ├── IBulkRemoveRepository.cs │ │ │ ├── IBulkUpdateRepository.cs │ │ │ ├── ICrudRepository.cs │ │ │ ├── ITenantScopedEntity.cs │ │ │ ├── TenantId.cs │ │ │ └── UserId.cs │ │ ├── DomainEvents │ │ │ ├── DomainEventCollector.cs │ │ │ ├── IDomainEvent.cs │ │ │ └── IDomainEventCollector.cs │ │ ├── Endpoints │ │ │ ├── HealthEndpoints.cs │ │ │ ├── IEndpoints.cs │ │ │ ├── TestEndpoints.cs │ │ │ └── TrackEndpoints.cs │ │ ├── EntityFramework │ │ │ ├── ModelBuilderExtensions.cs │ │ │ ├── SharedKernelDbContext.cs │ │ │ └── UpdateAuditableEntitiesInterceptor.cs │ │ ├── ExecutionContext │ │ │ ├── BackgroundWorkerExecutionContext.cs │ │ │ ├── HttpExecutionContext.cs │ │ │ └── IExecutionContext.cs │ │ ├── ExternalAnnotations │ │ │ ├── FluentValidation.xml │ │ │ ├── MediatR.xml │ │ │ └── README.md │ │ ├── Integrations │ │ │ ├── BlobStorage │ │ │ │ ├── BlobStorageClient.cs │ │ │ │ └── IBlobStorageClient.cs │ │ │ └── Email │ │ │ │ ├── AzureEmailClient.cs │ │ │ │ ├── DevelopmentEmailClient.cs │ │ │ │ └── IEmailClient.cs │ │ ├── Middleware │ │ │ ├── GlobalExceptionHandler.cs │ │ │ └── ModelBindingExceptionHandlerMiddleware.cs │ │ ├── Persistence │ │ │ ├── IUnitOfWork.cs │ │ │ ├── RepositoryBase.cs │ │ │ ├── SortOrder.cs │ │ │ └── UnitOfWork.cs │ │ ├── PipelineBehaviors │ │ │ ├── ConcurrentCommandCounter.cs │ │ │ ├── PublishDomainEventsPipelineBehavior.cs │ │ │ ├── PublishTelemetryEventsPipelineBehavior.cs │ │ │ ├── UnitOfWorkPipelineBehavior.cs │ │ │ └── ValidationPipelineBehavior.cs │ │ ├── Platform │ │ │ ├── Settings.cs │ │ │ └── platform-settings.jsonc │ │ ├── SharedKernel.csproj │ │ ├── SinglePageApp │ │ │ ├── SinglePageAppConfiguration.cs │ │ │ └── SinglePageAppFallbackExtensions.cs │ │ ├── StronglyTypedIds │ │ │ ├── IdGenerator.cs │ │ │ ├── IdPrefixAttribute.cs │ │ │ ├── StronglyTypedDocumentProcessor.cs │ │ │ ├── StronglyTypedId.cs │ │ │ ├── StronglyTypedIdJsonConverter.cs │ │ │ ├── StronglyTypedLongId.cs │ │ │ ├── StronglyTypedString.cs │ │ │ └── StronglyTypedUlid.cs │ │ ├── Telemetry │ │ │ ├── ApplicationInsightsTelemetryInitializer.cs │ │ │ ├── EndpointTelemetryFilter.cs │ │ │ ├── OpenTelemetryEnricher.cs │ │ │ ├── TelemetryContextMiddleware.cs │ │ │ └── TelemetryEventsCollector.cs │ │ └── Validation │ │ │ ├── ErrorDetail.cs │ │ │ ├── ErrorMessage.cs │ │ │ └── SharedValidations.cs │ └── Tests │ │ ├── ApiAssertionExtensions.cs │ │ ├── Behaviors │ │ ├── PublishDomainEventsPipelineBehaviorTests.cs │ │ └── UnitOfWorkPipelineBehaviorTests.cs │ │ ├── DomainEvents │ │ └── DomainEventTests.cs │ │ ├── Entities │ │ ├── EntityEqualityComparerTests.cs │ │ └── EntityTests.cs │ │ ├── EntityFramework │ │ ├── MapStronglyTypedStringTests.cs │ │ ├── SaveChangesInterceptorTests.cs │ │ └── UseStringForEnumsTests.cs │ │ ├── FakerExtensions.cs │ │ ├── Persistence │ │ ├── RepositoryTests.cs │ │ ├── SqliteConnectionExtensions.cs │ │ └── UnitOfWorkTests.cs │ │ ├── SharedKernel.Tests.csproj │ │ ├── StronglyTypedIds │ │ ├── IdGeneratorTests.cs │ │ ├── StronglyTypedStringTests.cs │ │ └── StronglyTypedUlidTests.cs │ │ ├── Telemetry │ │ └── TelemetryEventsCollectorSpy.cs │ │ ├── TestCategoryAttribute.cs │ │ └── TestEntities │ │ ├── ITestAggregateRepository.cs │ │ ├── SqliteInMemoryDbContextFactory.cs │ │ ├── TestAggregate.cs │ │ ├── TestAggregateCreatedEvent.cs │ │ ├── TestAggregateRepository.cs │ │ ├── TestCommand.cs │ │ └── TestDbContext.cs ├── shared-webapp │ ├── SharedKernel.WebApp.esproj │ ├── build │ │ ├── environment.d.ts │ │ ├── environment │ │ │ ├── runtime.ts │ │ │ └── tsconfig.json │ │ ├── module-federation-types │ │ │ └── account-management.d.ts │ │ ├── package.json │ │ ├── plugin │ │ │ ├── DevelopmentServerPlugin.ts │ │ │ ├── FileSystemRouterPlugin.ts │ │ │ ├── LinguiPlugin.ts │ │ │ ├── ModuleFederationPlugin.ts │ │ │ └── RunTimeEnvironmentPlugin.ts │ │ ├── react-env.d.ts │ │ └── tsconfig.json │ ├── config │ │ ├── package.json │ │ └── typescript │ │ │ ├── base.json │ │ │ ├── node-library.json │ │ │ ├── react-app.json │ │ │ └── react-library.json │ ├── infrastructure │ │ ├── applicationInsights │ │ │ ├── ApplicationInsightsProvider.tsx │ │ │ └── PageTracker.tsx │ │ ├── auth │ │ │ ├── AuthSyncModal.tsx │ │ │ ├── AuthSyncService.ts │ │ │ ├── AuthenticationMiddleware.ts │ │ │ ├── AuthenticationProvider.tsx │ │ │ ├── LoginButton.tsx │ │ │ ├── SignUpButton.tsx │ │ │ ├── constants.ts │ │ │ ├── hooks.ts │ │ │ ├── urlSanitizer.ts │ │ │ ├── useAuthSync.tsx │ │ │ └── util.ts │ │ ├── errorComponents │ │ │ ├── ErrorPage.tsx │ │ │ └── NotFoundPage.tsx │ │ ├── federation │ │ │ └── account-management.d.ts │ │ ├── http │ │ │ ├── errorHandler.ts │ │ │ ├── httpClient.ts │ │ │ └── queryClient.ts │ │ ├── package.json │ │ ├── react-env.d.ts │ │ ├── router │ │ │ └── ReactAriaRouterProvider.tsx │ │ ├── translations │ │ │ ├── LocaleSwitcher.tsx │ │ │ ├── Translation.tsx │ │ │ ├── TranslationContext.tsx │ │ │ ├── constants.ts │ │ │ ├── createFederatedTranslation.ts │ │ │ ├── createLinguiConfig.ts │ │ │ ├── i18n.config.json │ │ │ └── useInitializeLocale.ts │ │ └── tsconfig.json │ ├── package.json │ ├── tests │ │ └── e2e │ │ │ ├── auth │ │ │ ├── auth-state-manager.ts │ │ │ ├── storage-state.ts │ │ │ └── tenant-provisioning.ts │ │ │ ├── fixtures │ │ │ ├── page-auth.ts │ │ │ └── worker-auth.ts │ │ │ ├── playwright.config.ts │ │ │ ├── tsconfig.json │ │ │ ├── types │ │ │ └── auth.ts │ │ │ └── utils │ │ │ ├── constants.ts │ │ │ ├── test-assertions.ts │ │ │ ├── test-data.ts │ │ │ └── test-step-wrapper.ts │ ├── ui │ │ ├── cn.ts │ │ ├── components │ │ │ ├── Accordion.tsx │ │ │ ├── AddToHomescreen.tsx │ │ │ ├── AlertDialog.tsx │ │ │ ├── AppLayout.tsx │ │ │ ├── Avatar.tsx │ │ │ ├── Badge.tsx │ │ │ ├── Breadcrumbs.tsx │ │ │ ├── Button.tsx │ │ │ ├── Calendar.tsx │ │ │ ├── Card.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── ComboBox.tsx │ │ │ ├── DateField.tsx │ │ │ ├── DatePicker.tsx │ │ │ ├── DateRangePicker.tsx │ │ │ ├── Description.tsx │ │ │ ├── Dialog.tsx │ │ │ ├── DialogFooter.tsx │ │ │ ├── Digit.tsx │ │ │ ├── DndGridList.tsx │ │ │ ├── DomainInputField.tsx │ │ │ ├── DropZone.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── Field.tsx │ │ │ ├── FieldError.tsx │ │ │ ├── Form.tsx │ │ │ ├── FormErrorMessage.tsx │ │ │ ├── GridList.tsx │ │ │ ├── Group.tsx │ │ │ ├── Heading.tsx │ │ │ ├── IllustratedMessage.tsx │ │ │ ├── Image.tsx │ │ │ ├── InlineAlert.tsx │ │ │ ├── Input.tsx │ │ │ ├── LICENSE │ │ │ ├── Label.tsx │ │ │ ├── Link.tsx │ │ │ ├── ListBox.tsx │ │ │ ├── Menu.tsx │ │ │ ├── Meter.tsx │ │ │ ├── Modal.tsx │ │ │ ├── MultiSelect.tsx │ │ │ ├── NumberField.tsx │ │ │ ├── OneTimeCodeInput.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── Popover.tsx │ │ │ ├── ProgressBar.tsx │ │ │ ├── RadioGroup.tsx │ │ │ ├── RangeCalendar.tsx │ │ │ ├── SearchField.tsx │ │ │ ├── Select.tsx │ │ │ ├── Separator.tsx │ │ │ ├── SideMenu.tsx │ │ │ ├── Slider.tsx │ │ │ ├── StatusLight.tsx │ │ │ ├── Switch.tsx │ │ │ ├── Table.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── TagGroup.tsx │ │ │ ├── TenantLogo.tsx │ │ │ ├── Text.tsx │ │ │ ├── TextArea.tsx │ │ │ ├── TextField.tsx │ │ │ ├── TimeField.tsx │ │ │ ├── Toast.tsx │ │ │ ├── ToggleButton.tsx │ │ │ ├── Toolbar.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── focusRing.ts │ │ │ └── utils.ts │ │ ├── copyImages.js │ │ ├── forms │ │ │ └── mutationSubmitter.ts │ │ ├── hooks │ │ │ ├── useAxisLock.ts │ │ │ ├── useDebounce.ts │ │ │ ├── useExpiration.ts │ │ │ ├── useInfiniteScroll.ts │ │ │ ├── useKeyboardNavigation.ts │ │ │ ├── useLocalStorage.ts │ │ │ ├── useResponsiveMenu.ts │ │ │ ├── useSideMenuLayout.ts │ │ │ ├── useToast.ts │ │ │ └── useViewportResize.ts │ │ ├── images │ │ │ ├── logo-mark.svg │ │ │ ├── logo-wrap.svg │ │ │ └── powered-by.svg │ │ ├── index.ts │ │ ├── package.json │ │ ├── react-env.d.ts │ │ ├── tailwind-preset.ts │ │ ├── tailwind.css │ │ ├── theme │ │ │ ├── ThemeModeSelector.tsx │ │ │ └── mode │ │ │ │ ├── ThemeMode.tsx │ │ │ │ ├── useStorageThemeMode.ts │ │ │ │ ├── useSystemThemeMode.ts │ │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ ├── types │ │ │ └── FileUpload.ts │ │ └── utils │ │ │ └── responsive.ts │ └── utils │ │ ├── date │ │ └── formatDate.ts │ │ ├── hooks │ │ └── useMemorizedObject.ts │ │ ├── object │ │ └── isKeyof.ts │ │ ├── package.json │ │ ├── string │ │ ├── getCamelCase.ts │ │ ├── getInitials.ts │ │ └── getPascalCase.ts │ │ └── tsconfig.json └── turbo.json ├── biome.json ├── cloud-infrastructure ├── README.md ├── bicepconfig.json ├── cluster │ ├── deploy-cluster.sh │ ├── firewall.sh │ ├── grant-database-permissions.sh │ ├── main-cluster.bicep │ └── main-cluster.bicepparam ├── deploy.sh ├── environment │ ├── deploy-environment.sh │ └── main-environment.bicep └── modules │ ├── application-insights.bicep │ ├── communication-services.bicep │ ├── container-app.bicep │ ├── container-apps-environment.bicep │ ├── container-registry.bicep │ ├── key-vault.bicep │ ├── log-analytics-workspace.bicep │ ├── managed-certificate.bicep │ ├── microsoft-sql-database.bicep │ ├── microsoft-sql-server-diagnostic.bicep │ ├── microsoft-sql-server.bicep │ ├── role-assignments-container-registry-acr-pull.bicep │ ├── role-assignments-container-registry-data-importer.bicep │ ├── role-assignments-storage-blob-data-contributor.bicep │ ├── role-assignments-storage-blob-data-reader.bicep │ ├── storage-account.bicep │ ├── user-assigned-managed-identity.bicep │ └── virtual-network.bicep └── developer-cli ├── .editorconfig ├── Commands ├── BuildCommand.cs ├── CheckCommand.cs ├── ClaudeAgentCommand.cs ├── CoverageCommand.cs ├── DeployCommand.cs ├── End2EndCommand.cs ├── FormatCommand.cs ├── GitConfigCommand.cs ├── InitTaskManagerCommand.cs ├── InspectCommand.cs ├── InstallCommand.cs ├── McpCommand.cs ├── PullPlatformPlatformChangesCommand.cs ├── SyncAiRulesAndWorkflowsCommand.cs ├── TestCommand.cs ├── TranslateCommand.cs ├── UninstallCommand.cs ├── UpdatePackagesCommand.cs └── WatchCommand.cs ├── DeveloperCli.csproj ├── DeveloperCli.slnx ├── DeveloperCli.slnx.DotSettings ├── Directory.Build.props ├── Fonts └── small.flf ├── Installation ├── ChangeDetection.cs ├── Configuration.cs ├── PlaywrightInstaller.cs └── Prerequisite.cs ├── Program.cs ├── Utilities ├── ClaudeAgentLifecycle.cs ├── CommandLineArgumentsPreprocessor.cs ├── DockerServer.cs ├── GitHelper.cs ├── GithubHelper.cs ├── Logger.cs ├── ProcessHelper.cs ├── SecretHelper.cs ├── SelfContainedSystemHelper.cs └── TimeSpanExtensions.cs ├── dotnet-tools.json └── global.json /.agent/rules/backend/api-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/api-endpoints.md -------------------------------------------------------------------------------- /.agent/rules/backend/api-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/api-tests.md -------------------------------------------------------------------------------- /.agent/rules/backend/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/backend.md -------------------------------------------------------------------------------- /.agent/rules/backend/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/commands.md -------------------------------------------------------------------------------- /.agent/rules/backend/database-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/database-migrations.md -------------------------------------------------------------------------------- /.agent/rules/backend/domain-modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/domain-modeling.md -------------------------------------------------------------------------------- /.agent/rules/backend/external-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/external-integrations.md -------------------------------------------------------------------------------- /.agent/rules/backend/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/queries.md -------------------------------------------------------------------------------- /.agent/rules/backend/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/repositories.md -------------------------------------------------------------------------------- /.agent/rules/backend/strongly-typed-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/strongly-typed-ids.md -------------------------------------------------------------------------------- /.agent/rules/backend/telemetry-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/backend/telemetry-events.md -------------------------------------------------------------------------------- /.agent/rules/developer-cli/developer-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/developer-cli/developer-cli.md -------------------------------------------------------------------------------- /.agent/rules/end-to-end-tests/end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/end-to-end-tests/end-to-end-tests.md -------------------------------------------------------------------------------- /.agent/rules/frontend/form-with-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/frontend/form-with-validation.md -------------------------------------------------------------------------------- /.agent/rules/frontend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/frontend/frontend.md -------------------------------------------------------------------------------- /.agent/rules/frontend/known-accepted-warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/frontend/known-accepted-warnings.md -------------------------------------------------------------------------------- /.agent/rules/frontend/tanstack-query-api-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/frontend/tanstack-query-api-integration.md -------------------------------------------------------------------------------- /.agent/rules/frontend/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/frontend/translations.md -------------------------------------------------------------------------------- /.agent/rules/infrastructure/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/infrastructure/infrastructure.md -------------------------------------------------------------------------------- /.agent/rules/product-management/AzureDevOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/product-management/AzureDevOps.md -------------------------------------------------------------------------------- /.agent/rules/product-management/Jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/product-management/Jira.md -------------------------------------------------------------------------------- /.agent/rules/product-management/Linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/product-management/Linear.md -------------------------------------------------------------------------------- /.agent/rules/product-management/Markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/rules/product-management/Markdown.md -------------------------------------------------------------------------------- /.agent/workflows/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/commit.md -------------------------------------------------------------------------------- /.agent/workflows/modes/agentic-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/modes/agentic-workflow.md -------------------------------------------------------------------------------- /.agent/workflows/modes/coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/modes/coordinator.md -------------------------------------------------------------------------------- /.agent/workflows/modes/tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/modes/tech-lead.md -------------------------------------------------------------------------------- /.agent/workflows/prepare-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/prepare-pull-request.md -------------------------------------------------------------------------------- /.agent/workflows/process/create-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/process/create-prd.md -------------------------------------------------------------------------------- /.agent/workflows/process/implement-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/process/implement-end-to-end-tests.md -------------------------------------------------------------------------------- /.agent/workflows/process/implement-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/process/implement-feature.md -------------------------------------------------------------------------------- /.agent/workflows/process/implement-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/process/implement-task.md -------------------------------------------------------------------------------- /.agent/workflows/process/review-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/process/review-end-to-end-tests.md -------------------------------------------------------------------------------- /.agent/workflows/process/review-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/process/review-task.md -------------------------------------------------------------------------------- /.agent/workflows/update-ai-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.agent/workflows/update-ai-rules.md -------------------------------------------------------------------------------- /.claude/agentic-workflow/mcp-configs/chrome-devtools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/mcp-configs/chrome-devtools.json -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/backend-engineer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/backend-engineer.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/backend-reviewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/backend-reviewer.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/coordinator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/coordinator.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/frontend-engineer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/frontend-engineer.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/frontend-reviewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/frontend-reviewer.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/pair-programmer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/pair-programmer.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/qa-engineer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/qa-engineer.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/qa-reviewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/qa-reviewer.txt -------------------------------------------------------------------------------- /.claude/agentic-workflow/system-prompts/tech-lead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agentic-workflow/system-prompts/tech-lead.txt -------------------------------------------------------------------------------- /.claude/agents/backend-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/backend-engineer.md -------------------------------------------------------------------------------- /.claude/agents/backend-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/backend-reviewer.md -------------------------------------------------------------------------------- /.claude/agents/frontend-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/frontend-engineer.md -------------------------------------------------------------------------------- /.claude/agents/frontend-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/frontend-reviewer.md -------------------------------------------------------------------------------- /.claude/agents/pair-programmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/pair-programmer.md -------------------------------------------------------------------------------- /.claude/agents/parallel-tool-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/parallel-tool-runner.md -------------------------------------------------------------------------------- /.claude/agents/qa-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/qa-engineer.md -------------------------------------------------------------------------------- /.claude/agents/qa-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/agents/qa-reviewer.md -------------------------------------------------------------------------------- /.claude/commands/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/commit.md -------------------------------------------------------------------------------- /.claude/commands/modes/agentic-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/modes/agentic-workflow.md -------------------------------------------------------------------------------- /.claude/commands/modes/coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/modes/coordinator.md -------------------------------------------------------------------------------- /.claude/commands/modes/tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/modes/tech-lead.md -------------------------------------------------------------------------------- /.claude/commands/prepare-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/prepare-pull-request.md -------------------------------------------------------------------------------- /.claude/commands/process/create-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/process/create-prd.md -------------------------------------------------------------------------------- /.claude/commands/process/implement-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/process/implement-end-to-end-tests.md -------------------------------------------------------------------------------- /.claude/commands/process/implement-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/process/implement-feature.md -------------------------------------------------------------------------------- /.claude/commands/process/implement-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/process/implement-task.md -------------------------------------------------------------------------------- /.claude/commands/process/review-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/process/review-end-to-end-tests.md -------------------------------------------------------------------------------- /.claude/commands/process/review-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/process/review-task.md -------------------------------------------------------------------------------- /.claude/commands/update-ai-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/commands/update-ai-rules.md -------------------------------------------------------------------------------- /.claude/hooks/post-tool-use-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/hooks/post-tool-use-bash.sh -------------------------------------------------------------------------------- /.claude/hooks/pre-tool-use-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/hooks/pre-tool-use-bash.sh -------------------------------------------------------------------------------- /.claude/rules/backend/api-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/api-endpoints.md -------------------------------------------------------------------------------- /.claude/rules/backend/api-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/api-tests.md -------------------------------------------------------------------------------- /.claude/rules/backend/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/backend.md -------------------------------------------------------------------------------- /.claude/rules/backend/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/commands.md -------------------------------------------------------------------------------- /.claude/rules/backend/database-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/database-migrations.md -------------------------------------------------------------------------------- /.claude/rules/backend/domain-modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/domain-modeling.md -------------------------------------------------------------------------------- /.claude/rules/backend/external-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/external-integrations.md -------------------------------------------------------------------------------- /.claude/rules/backend/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/queries.md -------------------------------------------------------------------------------- /.claude/rules/backend/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/repositories.md -------------------------------------------------------------------------------- /.claude/rules/backend/strongly-typed-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/strongly-typed-ids.md -------------------------------------------------------------------------------- /.claude/rules/backend/telemetry-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/backend/telemetry-events.md -------------------------------------------------------------------------------- /.claude/rules/developer-cli/developer-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/developer-cli/developer-cli.md -------------------------------------------------------------------------------- /.claude/rules/end-to-end-tests/end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/end-to-end-tests/end-to-end-tests.md -------------------------------------------------------------------------------- /.claude/rules/frontend/form-with-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/frontend/form-with-validation.md -------------------------------------------------------------------------------- /.claude/rules/frontend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/frontend/frontend.md -------------------------------------------------------------------------------- /.claude/rules/frontend/known-accepted-warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/frontend/known-accepted-warnings.md -------------------------------------------------------------------------------- /.claude/rules/frontend/tanstack-query-api-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/frontend/tanstack-query-api-integration.md -------------------------------------------------------------------------------- /.claude/rules/frontend/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/frontend/translations.md -------------------------------------------------------------------------------- /.claude/rules/infrastructure/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/infrastructure/infrastructure.md -------------------------------------------------------------------------------- /.claude/rules/product-management/AzureDevOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/product-management/AzureDevOps.md -------------------------------------------------------------------------------- /.claude/rules/product-management/Jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/product-management/Jira.md -------------------------------------------------------------------------------- /.claude/rules/product-management/Linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/product-management/Linear.md -------------------------------------------------------------------------------- /.claude/rules/product-management/Markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/rules/product-management/Markdown.md -------------------------------------------------------------------------------- /.claude/samples/1-backend-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/samples/1-backend-sample.md -------------------------------------------------------------------------------- /.claude/samples/2-frontend-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/samples/2-frontend-sample.md -------------------------------------------------------------------------------- /.claude/samples/example-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/samples/example-prd.md -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.cursor/rules/backend/api-endpoints.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/api-endpoints.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/api-tests.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/api-tests.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/backend.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/backend.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/commands.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/commands.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/database-migrations.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/database-migrations.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/domain-modeling.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/domain-modeling.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/external-integrations.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/external-integrations.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/queries.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/queries.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/repositories.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/repositories.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/strongly-typed-ids.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/strongly-typed-ids.mdc -------------------------------------------------------------------------------- /.cursor/rules/backend/telemetry-events.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/backend/telemetry-events.mdc -------------------------------------------------------------------------------- /.cursor/rules/developer-cli/developer-cli.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/developer-cli/developer-cli.mdc -------------------------------------------------------------------------------- /.cursor/rules/end-to-end-tests/end-to-end-tests.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/end-to-end-tests/end-to-end-tests.mdc -------------------------------------------------------------------------------- /.cursor/rules/frontend/form-with-validation.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/frontend/form-with-validation.mdc -------------------------------------------------------------------------------- /.cursor/rules/frontend/frontend.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/frontend/frontend.mdc -------------------------------------------------------------------------------- /.cursor/rules/frontend/known-accepted-warnings.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/frontend/known-accepted-warnings.mdc -------------------------------------------------------------------------------- /.cursor/rules/frontend/tanstack-query-api-integration.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/frontend/tanstack-query-api-integration.mdc -------------------------------------------------------------------------------- /.cursor/rules/frontend/translations.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/frontend/translations.mdc -------------------------------------------------------------------------------- /.cursor/rules/infrastructure/infrastructure.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/infrastructure/infrastructure.mdc -------------------------------------------------------------------------------- /.cursor/rules/product-management/AzureDevOps.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/product-management/AzureDevOps.mdc -------------------------------------------------------------------------------- /.cursor/rules/product-management/Jira.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/product-management/Jira.mdc -------------------------------------------------------------------------------- /.cursor/rules/product-management/Linear.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/product-management/Linear.mdc -------------------------------------------------------------------------------- /.cursor/rules/product-management/Markdown.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/product-management/Markdown.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/commit.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/commit.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/modes/agentic-workflow.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/modes/agentic-workflow.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/modes/coordinator.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/modes/coordinator.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/modes/tech-lead.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/modes/tech-lead.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/prepare-pull-request.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/prepare-pull-request.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/process/create-prd.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/process/create-prd.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/process/implement-end-to-end-tests.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/process/implement-end-to-end-tests.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/process/implement-feature.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/process/implement-feature.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/process/implement-task.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/process/implement-task.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/process/review-end-to-end-tests.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/process/review-end-to-end-tests.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/process/review-task.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/process/review-task.mdc -------------------------------------------------------------------------------- /.cursor/rules/workflows/update-ai-rules.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/rules/workflows/update-ai-rules.mdc -------------------------------------------------------------------------------- /.cursor/samples/1-backend-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/samples/1-backend-sample.md -------------------------------------------------------------------------------- /.cursor/samples/2-frontend-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/samples/2-frontend-sample.md -------------------------------------------------------------------------------- /.cursor/samples/example-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.cursor/samples/example-prd.md -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- 1 | ../AGENTS.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/api-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/api-endpoints.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/api-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/api-tests.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/backend.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/commands.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/database-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/database-migrations.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/domain-modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/domain-modeling.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/external-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/external-integrations.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/queries.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/repositories.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/strongly-typed-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/strongly-typed-ids.md -------------------------------------------------------------------------------- /.github/copilot/rules/backend/telemetry-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/backend/telemetry-events.md -------------------------------------------------------------------------------- /.github/copilot/rules/developer-cli/developer-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/developer-cli/developer-cli.md -------------------------------------------------------------------------------- /.github/copilot/rules/end-to-end-tests/end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/end-to-end-tests/end-to-end-tests.md -------------------------------------------------------------------------------- /.github/copilot/rules/frontend/form-with-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/frontend/form-with-validation.md -------------------------------------------------------------------------------- /.github/copilot/rules/frontend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/frontend/frontend.md -------------------------------------------------------------------------------- /.github/copilot/rules/frontend/known-accepted-warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/frontend/known-accepted-warnings.md -------------------------------------------------------------------------------- /.github/copilot/rules/frontend/tanstack-query-api-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/frontend/tanstack-query-api-integration.md -------------------------------------------------------------------------------- /.github/copilot/rules/frontend/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/frontend/translations.md -------------------------------------------------------------------------------- /.github/copilot/rules/infrastructure/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/infrastructure/infrastructure.md -------------------------------------------------------------------------------- /.github/copilot/rules/product-management/AzureDevOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/product-management/AzureDevOps.md -------------------------------------------------------------------------------- /.github/copilot/rules/product-management/Jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/product-management/Jira.md -------------------------------------------------------------------------------- /.github/copilot/rules/product-management/Linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/product-management/Linear.md -------------------------------------------------------------------------------- /.github/copilot/rules/product-management/Markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/rules/product-management/Markdown.md -------------------------------------------------------------------------------- /.github/copilot/workflows/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/commit.md -------------------------------------------------------------------------------- /.github/copilot/workflows/modes/agentic-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/modes/agentic-workflow.md -------------------------------------------------------------------------------- /.github/copilot/workflows/modes/coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/modes/coordinator.md -------------------------------------------------------------------------------- /.github/copilot/workflows/modes/tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/modes/tech-lead.md -------------------------------------------------------------------------------- /.github/copilot/workflows/prepare-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/prepare-pull-request.md -------------------------------------------------------------------------------- /.github/copilot/workflows/process/create-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/process/create-prd.md -------------------------------------------------------------------------------- /.github/copilot/workflows/process/implement-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/process/implement-end-to-end-tests.md -------------------------------------------------------------------------------- /.github/copilot/workflows/process/implement-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/process/implement-feature.md -------------------------------------------------------------------------------- /.github/copilot/workflows/process/implement-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/process/implement-task.md -------------------------------------------------------------------------------- /.github/copilot/workflows/process/review-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/process/review-end-to-end-tests.md -------------------------------------------------------------------------------- /.github/copilot/workflows/process/review-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/process/review-task.md -------------------------------------------------------------------------------- /.github/copilot/workflows/update-ai-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/copilot/workflows/update-ai-rules.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/_deploy-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/_deploy-container.yml -------------------------------------------------------------------------------- /.github/workflows/_deploy-infrastructure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/_deploy-infrastructure.yml -------------------------------------------------------------------------------- /.github/workflows/_migrate-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/_migrate-database.yml -------------------------------------------------------------------------------- /.github/workflows/account-management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/account-management.yml -------------------------------------------------------------------------------- /.github/workflows/app-gateway.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/app-gateway.yml -------------------------------------------------------------------------------- /.github/workflows/back-office.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/back-office.yml -------------------------------------------------------------------------------- /.github/workflows/cloud-infrastructure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/cloud-infrastructure.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-conventions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.github/workflows/pull-request-conventions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.gitignore -------------------------------------------------------------------------------- /.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.mcp.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.windsurf/rules/backend/api-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/api-endpoints.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/api-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/api-tests.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/backend.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/commands.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/database-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/database-migrations.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/domain-modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/domain-modeling.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/external-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/external-integrations.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/queries.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/repositories.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/strongly-typed-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/strongly-typed-ids.md -------------------------------------------------------------------------------- /.windsurf/rules/backend/telemetry-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/backend/telemetry-events.md -------------------------------------------------------------------------------- /.windsurf/rules/developer-cli/developer-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/developer-cli/developer-cli.md -------------------------------------------------------------------------------- /.windsurf/rules/end-to-end-tests/end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/end-to-end-tests/end-to-end-tests.md -------------------------------------------------------------------------------- /.windsurf/rules/frontend/form-with-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/frontend/form-with-validation.md -------------------------------------------------------------------------------- /.windsurf/rules/frontend/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/frontend/frontend.md -------------------------------------------------------------------------------- /.windsurf/rules/frontend/known-accepted-warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/frontend/known-accepted-warnings.md -------------------------------------------------------------------------------- /.windsurf/rules/frontend/tanstack-query-api-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/frontend/tanstack-query-api-integration.md -------------------------------------------------------------------------------- /.windsurf/rules/frontend/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/frontend/translations.md -------------------------------------------------------------------------------- /.windsurf/rules/infrastructure/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/infrastructure/infrastructure.md -------------------------------------------------------------------------------- /.windsurf/rules/product-management/AzureDevOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/product-management/AzureDevOps.md -------------------------------------------------------------------------------- /.windsurf/rules/product-management/Jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/product-management/Jira.md -------------------------------------------------------------------------------- /.windsurf/rules/product-management/Linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/product-management/Linear.md -------------------------------------------------------------------------------- /.windsurf/rules/product-management/Markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/rules/product-management/Markdown.md -------------------------------------------------------------------------------- /.windsurf/samples/1-backend-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/samples/1-backend-sample.md -------------------------------------------------------------------------------- /.windsurf/samples/2-frontend-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/samples/2-frontend-sample.md -------------------------------------------------------------------------------- /.windsurf/samples/example-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/samples/example-prd.md -------------------------------------------------------------------------------- /.windsurf/workflows/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/commit.md -------------------------------------------------------------------------------- /.windsurf/workflows/modes/agentic-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/modes/agentic-workflow.md -------------------------------------------------------------------------------- /.windsurf/workflows/modes/coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/modes/coordinator.md -------------------------------------------------------------------------------- /.windsurf/workflows/modes/tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/modes/tech-lead.md -------------------------------------------------------------------------------- /.windsurf/workflows/prepare-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/prepare-pull-request.md -------------------------------------------------------------------------------- /.windsurf/workflows/process/create-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/process/create-prd.md -------------------------------------------------------------------------------- /.windsurf/workflows/process/implement-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/process/implement-end-to-end-tests.md -------------------------------------------------------------------------------- /.windsurf/workflows/process/implement-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/process/implement-feature.md -------------------------------------------------------------------------------- /.windsurf/workflows/process/implement-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/process/implement-task.md -------------------------------------------------------------------------------- /.windsurf/workflows/process/review-end-to-end-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/process/review-end-to-end-tests.md -------------------------------------------------------------------------------- /.windsurf/workflows/process/review-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/process/review-task.md -------------------------------------------------------------------------------- /.windsurf/workflows/update-ai-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/.windsurf/workflows/update-ai-rules.md -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/README.md -------------------------------------------------------------------------------- /application/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/.editorconfig -------------------------------------------------------------------------------- /application/AppGateway/ApiAggregation/ApiAggregationEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/ApiAggregation/ApiAggregationEndpoints.cs -------------------------------------------------------------------------------- /application/AppGateway/ApiAggregation/ApiAggregationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/ApiAggregation/ApiAggregationService.cs -------------------------------------------------------------------------------- /application/AppGateway/ApiAggregation/ApiExplorerRouteFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/ApiAggregation/ApiExplorerRouteFilter.cs -------------------------------------------------------------------------------- /application/AppGateway/AppGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/AppGateway.csproj -------------------------------------------------------------------------------- /application/AppGateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/Dockerfile -------------------------------------------------------------------------------- /application/AppGateway/Filters/ClusterDestinationConfigFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/Filters/ClusterDestinationConfigFilter.cs -------------------------------------------------------------------------------- /application/AppGateway/Middleware/AuthenticationCookieMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/Middleware/AuthenticationCookieMiddleware.cs -------------------------------------------------------------------------------- /application/AppGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/Program.cs -------------------------------------------------------------------------------- /application/AppGateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /application/AppGateway/Transformations/BlockInternalApiTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/Transformations/BlockInternalApiTransform.cs -------------------------------------------------------------------------------- /application/AppGateway/Transformations/ManagedIdentityTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/Transformations/ManagedIdentityTransform.cs -------------------------------------------------------------------------------- /application/AppGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppGateway/appsettings.json -------------------------------------------------------------------------------- /application/AppHost/AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppHost/AppHost.csproj -------------------------------------------------------------------------------- /application/AppHost/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppHost/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /application/AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppHost/Program.cs -------------------------------------------------------------------------------- /application/AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /application/AppHost/SecretManagerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppHost/SecretManagerHelper.cs -------------------------------------------------------------------------------- /application/AppHost/SslCertificateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppHost/SslCertificateManager.cs -------------------------------------------------------------------------------- /application/AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/AppHost/appsettings.json -------------------------------------------------------------------------------- /application/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/Directory.Packages.props -------------------------------------------------------------------------------- /application/PlatformPlatform.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/PlatformPlatform.slnx -------------------------------------------------------------------------------- /application/PlatformPlatform.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/PlatformPlatform.slnx.DotSettings -------------------------------------------------------------------------------- /application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/README.md -------------------------------------------------------------------------------- /application/account-management/AccountManagement.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/AccountManagement.slnf -------------------------------------------------------------------------------- /application/account-management/Api/AccountManagement.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/AccountManagement.Api.csproj -------------------------------------------------------------------------------- /application/account-management/Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/Dockerfile -------------------------------------------------------------------------------- /application/account-management/Api/Endpoints/AuthenticationEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/Endpoints/AuthenticationEndpoints.cs -------------------------------------------------------------------------------- /application/account-management/Api/Endpoints/SignupEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/Endpoints/SignupEndpoints.cs -------------------------------------------------------------------------------- /application/account-management/Api/Endpoints/TenantEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/Endpoints/TenantEndpoints.cs -------------------------------------------------------------------------------- /application/account-management/Api/Endpoints/UserEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/Endpoints/UserEndpoints.cs -------------------------------------------------------------------------------- /application/account-management/Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/Program.cs -------------------------------------------------------------------------------- /application/account-management/Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /application/account-management/Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Api/appsettings.json -------------------------------------------------------------------------------- /application/account-management/Core/AccountManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/AccountManagement.csproj -------------------------------------------------------------------------------- /application/account-management/Core/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Configuration.cs -------------------------------------------------------------------------------- /application/account-management/Core/Database/AccountManagementDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Database/AccountManagementDbContext.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Authentication/Domain/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Authentication/Domain/Login.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Signups/Commands/StartSignup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Signups/Commands/StartSignup.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/TelemetryEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/TelemetryEvents.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Tenants/Commands/CreateTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Tenants/Commands/CreateTenant.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Tenants/Commands/DeleteTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Tenants/Commands/DeleteTenant.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Tenants/Domain/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Tenants/Domain/Tenant.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Tenants/Domain/TenantEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Tenants/Domain/TenantEvents.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Tenants/Domain/TenantTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Tenants/Domain/TenantTypes.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Commands/ChangeLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Commands/ChangeLocale.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Commands/ChangeUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Commands/ChangeUserRole.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Commands/CreateUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Commands/CreateUser.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Commands/DeleteUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Commands/DeleteUser.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Commands/InviteUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Commands/InviteUser.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Commands/RemoveAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Commands/RemoveAvatar.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Commands/UpdateAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Commands/UpdateAvatar.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Domain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Domain/User.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Domain/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Domain/UserRepository.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Domain/UserTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Domain/UserTypes.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Queries/GetCurrentUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Queries/GetCurrentUser.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Queries/GetUserById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Queries/GetUserById.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Queries/GetUserSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Queries/GetUserSummary.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Queries/GetUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Queries/GetUsers.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Shared/AvatarUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Shared/AvatarUpdater.cs -------------------------------------------------------------------------------- /application/account-management/Core/Features/Users/Shared/UserInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Features/Users/Shared/UserInfoFactory.cs -------------------------------------------------------------------------------- /application/account-management/Core/Integrations/Gravatar/GravatarClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Core/Integrations/Gravatar/GravatarClient.cs -------------------------------------------------------------------------------- /application/account-management/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Directory.Build.props -------------------------------------------------------------------------------- /application/account-management/Tests/AccountManagement.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/AccountManagement.Tests.csproj -------------------------------------------------------------------------------- /application/account-management/Tests/ArchitectureTests/PublicClassesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/ArchitectureTests/PublicClassesTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Authentication/CompleteLoginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Authentication/CompleteLoginTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Authentication/LogoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Authentication/LogoutTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Authentication/StartLoginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Authentication/StartLoginTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Authentication/SwitchTenantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Authentication/SwitchTenantTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/DatabaseSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/DatabaseSeeder.cs -------------------------------------------------------------------------------- /application/account-management/Tests/EndpointBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/EndpointBaseTest.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Signups/CompleteSignupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Signups/CompleteSignupTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Signups/StartSignupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Signups/StartSignupTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Tenants/DeleteTenantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Tenants/DeleteTenantTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Tenants/GetCurrentTenantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Tenants/GetCurrentTenantTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Tenants/GetTenantsForUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Tenants/GetTenantsForUserTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Tenants/RemoveTenantLogoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Tenants/RemoveTenantLogoTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Tenants/UpdateCurrentTenantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Tenants/UpdateCurrentTenantTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Tenants/UpdateTenantLogoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Tenants/UpdateTenantLogoTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/BulkDeleteUsersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/BulkDeleteUsersTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/ChangeLocaleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/ChangeLocaleTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/ChangeUserRoleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/ChangeUserRoleTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/DeclineInvitationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/DeclineInvitationTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/DeleteUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/DeleteUserTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/Domain/UserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/Domain/UserTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/GetCurrentUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/GetCurrentUserTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/GetUserByIdTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/GetUserByIdTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/GetUsersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/GetUsersTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/InviteUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/InviteUserTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/Users/UpdateCurrentUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/Users/UpdateCurrentUserTests.cs -------------------------------------------------------------------------------- /application/account-management/Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Tests/appsettings.json -------------------------------------------------------------------------------- /application/account-management/WebApp/AccountManagement.WebApp.esproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/AccountManagement.WebApp.esproj -------------------------------------------------------------------------------- /application/account-management/WebApp/bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/bootstrap.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/lingui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/lingui.config.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/main.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/package.json -------------------------------------------------------------------------------- /application/account-management/WebApp/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/public/apple-touch-icon.png -------------------------------------------------------------------------------- /application/account-management/WebApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/public/favicon.ico -------------------------------------------------------------------------------- /application/account-management/WebApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/public/index.html -------------------------------------------------------------------------------- /application/account-management/WebApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/public/manifest.json -------------------------------------------------------------------------------- /application/account-management/WebApp/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /application/account-management/WebApp/react-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/(index)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/(index)/index.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/__root.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/admin/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/admin/account/index.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/admin/index.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/admin/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/admin/users/index.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/login/-shared/loginState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/login/-shared/loginState.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/login/index.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/login/verify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/login/verify.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/signup/-shared/signupState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/signup/-shared/signupState.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/signup/index.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/routes/signup/verify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/routes/signup/verify.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/rsbuild.config.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/components/HeroImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/components/HeroImage.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/components/PublicFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/components/PublicFooter.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/components/PublicNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/components/PublicNavigation.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/components/topMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/components/topMenu/index.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/hooks/useSwitchTenant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/hooks/useSwitchTenant.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/images/hero-desktop-blur.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/images/hero-desktop-blur.webp -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/images/hero-desktop-xl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/images/hero-desktop-xl.webp -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/images/hero-mobile-blur.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/images/hero-mobile-blur.webp -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/images/hero-mobile-xl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/images/hero-mobile-xl.webp -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/images/logo-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/images/logo-mark.svg -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/images/logo-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/images/logo-wrap.svg -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/images/powered-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/images/powered-by.svg -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/layouts/HorizontalHeroLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/layouts/HorizontalHeroLayout.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/lib/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/lib/api/client.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/lib/api/userRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/lib/api/userRole.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/lib/api/userStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/lib/api/userStatus.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/lib/router/router.tsx -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/translations/locale/da-DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/translations/locale/da-DK.po -------------------------------------------------------------------------------- /application/account-management/WebApp/shared/translations/locale/en-US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/shared/translations/locale/en-US.po -------------------------------------------------------------------------------- /application/account-management/WebApp/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tailwind.config.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/e2e/csp-nonce-flows.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/e2e/csp-nonce-flows.spec.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/e2e/localization-flows.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/e2e/localization-flows.spec.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/e2e/login-flows.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/e2e/login-flows.spec.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/e2e/mobile-view-flows.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/e2e/mobile-view-flows.spec.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/e2e/signup-flows.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/e2e/signup-flows.spec.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/e2e/theme-flows.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/e2e/theme-flows.spec.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/e2e/user-management-flows.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/e2e/user-management-flows.spec.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/playwright.config.ts -------------------------------------------------------------------------------- /application/account-management/WebApp/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tests/tsconfig.json -------------------------------------------------------------------------------- /application/account-management/WebApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tsconfig.json -------------------------------------------------------------------------------- /application/account-management/WebApp/tsr.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/WebApp/tsr.config.json -------------------------------------------------------------------------------- /application/account-management/Workers/AccountManagement.Workers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Workers/AccountManagement.Workers.csproj -------------------------------------------------------------------------------- /application/account-management/Workers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Workers/Dockerfile -------------------------------------------------------------------------------- /application/account-management/Workers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Workers/Program.cs -------------------------------------------------------------------------------- /application/account-management/Workers/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Workers/Properties/launchSettings.json -------------------------------------------------------------------------------- /application/account-management/Workers/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/account-management/Workers/appsettings.json -------------------------------------------------------------------------------- /application/back-office/Api/BackOffice.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Api/BackOffice.Api.csproj -------------------------------------------------------------------------------- /application/back-office/Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Api/Dockerfile -------------------------------------------------------------------------------- /application/back-office/Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Api/Program.cs -------------------------------------------------------------------------------- /application/back-office/Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /application/back-office/Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Api/appsettings.json -------------------------------------------------------------------------------- /application/back-office/BackOffice.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/BackOffice.slnf -------------------------------------------------------------------------------- /application/back-office/Core/BackOffice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Core/BackOffice.csproj -------------------------------------------------------------------------------- /application/back-office/Core/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Core/Configuration.cs -------------------------------------------------------------------------------- /application/back-office/Core/Database/BackOfficeDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Core/Database/BackOfficeDbContext.cs -------------------------------------------------------------------------------- /application/back-office/Core/Database/Migrations/20250217000000_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Core/Database/Migrations/20250217000000_Initial.cs -------------------------------------------------------------------------------- /application/back-office/Core/Features/TelemetryEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Core/Features/TelemetryEvents.cs -------------------------------------------------------------------------------- /application/back-office/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Directory.Build.props -------------------------------------------------------------------------------- /application/back-office/Tests/ArchitectureTests/PublicClassesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Tests/ArchitectureTests/PublicClassesTests.cs -------------------------------------------------------------------------------- /application/back-office/Tests/BackOffice.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Tests/BackOffice.Tests.csproj -------------------------------------------------------------------------------- /application/back-office/Tests/DatabaseSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Tests/DatabaseSeeder.cs -------------------------------------------------------------------------------- /application/back-office/Tests/EndpointBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Tests/EndpointBaseTest.cs -------------------------------------------------------------------------------- /application/back-office/Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Tests/appsettings.json -------------------------------------------------------------------------------- /application/back-office/WebApp/BackOffice.WebApp.esproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/BackOffice.WebApp.esproj -------------------------------------------------------------------------------- /application/back-office/WebApp/bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/bootstrap.tsx -------------------------------------------------------------------------------- /application/back-office/WebApp/lingui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/lingui.config.ts -------------------------------------------------------------------------------- /application/back-office/WebApp/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/main.tsx -------------------------------------------------------------------------------- /application/back-office/WebApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/package.json -------------------------------------------------------------------------------- /application/back-office/WebApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/public/index.html -------------------------------------------------------------------------------- /application/back-office/WebApp/react-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/react-env.d.ts -------------------------------------------------------------------------------- /application/back-office/WebApp/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/routes/__root.tsx -------------------------------------------------------------------------------- /application/back-office/WebApp/routes/back-office/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/routes/back-office/index.tsx -------------------------------------------------------------------------------- /application/back-office/WebApp/rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/rsbuild.config.ts -------------------------------------------------------------------------------- /application/back-office/WebApp/shared/components/topMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/shared/components/topMenu/index.tsx -------------------------------------------------------------------------------- /application/back-office/WebApp/shared/lib/api/BackOffice.Api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/shared/lib/api/BackOffice.Api.json -------------------------------------------------------------------------------- /application/back-office/WebApp/shared/lib/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/shared/lib/api/client.ts -------------------------------------------------------------------------------- /application/back-office/WebApp/shared/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/shared/lib/router/router.tsx -------------------------------------------------------------------------------- /application/back-office/WebApp/shared/translations/locale/da-DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/shared/translations/locale/da-DK.po -------------------------------------------------------------------------------- /application/back-office/WebApp/shared/translations/locale/en-US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/shared/translations/locale/en-US.po -------------------------------------------------------------------------------- /application/back-office/WebApp/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/tailwind.config.ts -------------------------------------------------------------------------------- /application/back-office/WebApp/tests/e2e/homepage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/tests/e2e/homepage.spec.ts -------------------------------------------------------------------------------- /application/back-office/WebApp/tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/tests/playwright.config.ts -------------------------------------------------------------------------------- /application/back-office/WebApp/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/tests/tsconfig.json -------------------------------------------------------------------------------- /application/back-office/WebApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/tsconfig.json -------------------------------------------------------------------------------- /application/back-office/WebApp/tsr.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/WebApp/tsr.config.json -------------------------------------------------------------------------------- /application/back-office/Workers/BackOffice.Workers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Workers/BackOffice.Workers.csproj -------------------------------------------------------------------------------- /application/back-office/Workers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Workers/Dockerfile -------------------------------------------------------------------------------- /application/back-office/Workers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Workers/Program.cs -------------------------------------------------------------------------------- /application/back-office/Workers/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Workers/Properties/launchSettings.json -------------------------------------------------------------------------------- /application/back-office/Workers/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/back-office/Workers/appsettings.json -------------------------------------------------------------------------------- /application/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/biome.json -------------------------------------------------------------------------------- /application/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/dotnet-tools.json -------------------------------------------------------------------------------- /application/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/global.json -------------------------------------------------------------------------------- /application/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/package-lock.json -------------------------------------------------------------------------------- /application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/package.json -------------------------------------------------------------------------------- /application/shared-kernel/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Directory.Build.props -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Antiforgery/AntiforgeryMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Antiforgery/AntiforgeryMiddleware.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/ApiResults/ApiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/ApiResults/ApiResult.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/ApiResults/ApiResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/ApiResults/ApiResultExtensions.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Authentication/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Authentication/UserInfo.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Cqrs/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Cqrs/ICommand.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Cqrs/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Cqrs/Result.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Database/DatabaseMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Database/DatabaseMigrationService.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/AggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/AggregateRoot.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/AudibleEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/AudibleEntity.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/Entity.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/EntityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/EntityEqualityComparer.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/IAppendRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/IAppendRepository.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/IAuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/IAuditableEntity.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/IBulkAddRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/IBulkAddRepository.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/IBulkRemoveRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/IBulkRemoveRepository.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/IBulkUpdateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/IBulkUpdateRepository.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/ICrudRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/ICrudRepository.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/ITenantScopedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/ITenantScopedEntity.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/TenantId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/TenantId.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Domain/UserId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Domain/UserId.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/DomainEvents/DomainEventCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/DomainEvents/DomainEventCollector.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/DomainEvents/IDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/DomainEvents/IDomainEvent.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Endpoints/HealthEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Endpoints/HealthEndpoints.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Endpoints/IEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Endpoints/IEndpoints.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Endpoints/TestEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Endpoints/TestEndpoints.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Endpoints/TrackEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Endpoints/TrackEndpoints.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/ExternalAnnotations/MediatR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/ExternalAnnotations/MediatR.xml -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/ExternalAnnotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/ExternalAnnotations/README.md -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Integrations/Email/IEmailClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Integrations/Email/IEmailClient.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Persistence/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Persistence/IUnitOfWork.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Persistence/RepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Persistence/RepositoryBase.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Persistence/SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Persistence/SortOrder.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Persistence/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Persistence/UnitOfWork.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Platform/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Platform/Settings.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Platform/platform-settings.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Platform/platform-settings.jsonc -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/SharedKernel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/SharedKernel.csproj -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/StronglyTypedIds/IdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/StronglyTypedIds/IdGenerator.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/StronglyTypedIds/StronglyTypedId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/StronglyTypedIds/StronglyTypedId.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Telemetry/OpenTelemetryEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Telemetry/OpenTelemetryEnricher.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Validation/ErrorDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Validation/ErrorDetail.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Validation/ErrorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Validation/ErrorMessage.cs -------------------------------------------------------------------------------- /application/shared-kernel/SharedKernel/Validation/SharedValidations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/SharedKernel/Validation/SharedValidations.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/ApiAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/ApiAssertionExtensions.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/DomainEvents/DomainEventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/DomainEvents/DomainEventTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/Entities/EntityEqualityComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/Entities/EntityEqualityComparerTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/Entities/EntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/Entities/EntityTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/EntityFramework/UseStringForEnumsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/EntityFramework/UseStringForEnumsTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/FakerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/FakerExtensions.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/Persistence/RepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/Persistence/RepositoryTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/Persistence/SqliteConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/Persistence/SqliteConnectionExtensions.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/Persistence/UnitOfWorkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/Persistence/UnitOfWorkTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/SharedKernel.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/SharedKernel.Tests.csproj -------------------------------------------------------------------------------- /application/shared-kernel/Tests/StronglyTypedIds/IdGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/StronglyTypedIds/IdGeneratorTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/StronglyTypedIds/StronglyTypedUlidTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/StronglyTypedIds/StronglyTypedUlidTests.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/Telemetry/TelemetryEventsCollectorSpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/Telemetry/TelemetryEventsCollectorSpy.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/TestCategoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/TestCategoryAttribute.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/TestEntities/ITestAggregateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/TestEntities/ITestAggregateRepository.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/TestEntities/TestAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/TestEntities/TestAggregate.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/TestEntities/TestAggregateCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/TestEntities/TestAggregateCreatedEvent.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/TestEntities/TestAggregateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/TestEntities/TestAggregateRepository.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/TestEntities/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/TestEntities/TestCommand.cs -------------------------------------------------------------------------------- /application/shared-kernel/Tests/TestEntities/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-kernel/Tests/TestEntities/TestDbContext.cs -------------------------------------------------------------------------------- /application/shared-webapp/SharedKernel.WebApp.esproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/SharedKernel.WebApp.esproj -------------------------------------------------------------------------------- /application/shared-webapp/build/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/environment.d.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/environment/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/environment/runtime.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/environment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/environment/tsconfig.json -------------------------------------------------------------------------------- /application/shared-webapp/build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/package.json -------------------------------------------------------------------------------- /application/shared-webapp/build/plugin/DevelopmentServerPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/plugin/DevelopmentServerPlugin.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/plugin/FileSystemRouterPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/plugin/FileSystemRouterPlugin.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/plugin/LinguiPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/plugin/LinguiPlugin.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/plugin/ModuleFederationPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/plugin/ModuleFederationPlugin.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/plugin/RunTimeEnvironmentPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/plugin/RunTimeEnvironmentPlugin.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/react-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/react-env.d.ts -------------------------------------------------------------------------------- /application/shared-webapp/build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/build/tsconfig.json -------------------------------------------------------------------------------- /application/shared-webapp/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/config/package.json -------------------------------------------------------------------------------- /application/shared-webapp/config/typescript/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/config/typescript/base.json -------------------------------------------------------------------------------- /application/shared-webapp/config/typescript/node-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/config/typescript/node-library.json -------------------------------------------------------------------------------- /application/shared-webapp/config/typescript/react-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/config/typescript/react-app.json -------------------------------------------------------------------------------- /application/shared-webapp/config/typescript/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/config/typescript/react-library.json -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/AuthSyncModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/AuthSyncModal.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/AuthSyncService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/AuthSyncService.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/AuthenticationMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/AuthenticationMiddleware.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/AuthenticationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/AuthenticationProvider.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/LoginButton.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/SignUpButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/SignUpButton.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/constants.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/hooks.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/urlSanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/urlSanitizer.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/useAuthSync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/useAuthSync.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/auth/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/auth/util.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/errorComponents/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/errorComponents/ErrorPage.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/errorComponents/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/errorComponents/NotFoundPage.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/http/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/http/errorHandler.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/http/httpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/http/httpClient.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/http/queryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/http/queryClient.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/package.json -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/react-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/translations/LocaleSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/translations/LocaleSwitcher.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/translations/Translation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/translations/Translation.tsx -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/translations/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/translations/constants.ts -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/translations/i18n.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/translations/i18n.config.json -------------------------------------------------------------------------------- /application/shared-webapp/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /application/shared-webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/package.json -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/auth/auth-state-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/auth/auth-state-manager.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/auth/storage-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/auth/storage-state.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/auth/tenant-provisioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/auth/tenant-provisioning.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/fixtures/page-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/fixtures/page-auth.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/fixtures/worker-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/fixtures/worker-auth.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/playwright.config.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/tsconfig.json -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/types/auth.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/utils/constants.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/utils/test-assertions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/utils/test-assertions.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/utils/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/utils/test-data.ts -------------------------------------------------------------------------------- /application/shared-webapp/tests/e2e/utils/test-step-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/tests/e2e/utils/test-step-wrapper.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/cn.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Accordion.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/AddToHomescreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/AddToHomescreen.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/AlertDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/AlertDialog.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/AppLayout.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Avatar.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Badge.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Breadcrumbs.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Button.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Calendar.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Card.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Checkbox.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/ComboBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/ComboBox.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/DateField.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/DatePicker.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/DateRangePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/DateRangePicker.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Description.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Dialog.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/DialogFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/DialogFooter.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Digit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Digit.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/DndGridList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/DndGridList.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/DomainInputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/DomainInputField.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/DropZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/DropZone.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Dropdown.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Field.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/FieldError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/FieldError.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Form.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/FormErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/FormErrorMessage.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/GridList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/GridList.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Group.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Heading.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/IllustratedMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/IllustratedMessage.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Image.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/InlineAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/InlineAlert.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Input.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/LICENSE -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Label.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Link.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/ListBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/ListBox.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Menu.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Meter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Meter.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Modal.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/MultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/MultiSelect.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/NumberField.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/OneTimeCodeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/OneTimeCodeInput.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Pagination.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Popover.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/ProgressBar.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/RadioGroup.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/RangeCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/RangeCalendar.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/SearchField.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Select.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Separator.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/SideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/SideMenu.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Slider.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/StatusLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/StatusLight.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Switch.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Table.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Tabs.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/TagGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/TagGroup.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/TenantLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/TenantLogo.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Text.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/TextArea.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/TextField.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/TimeField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/TimeField.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Toast.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/ToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/ToggleButton.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Toolbar.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/Tooltip.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/focusRing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/focusRing.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/components/utils.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/copyImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/copyImages.js -------------------------------------------------------------------------------- /application/shared-webapp/ui/forms/mutationSubmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/forms/mutationSubmitter.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useAxisLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useAxisLock.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useDebounce.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useExpiration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useExpiration.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useInfiniteScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useInfiniteScroll.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useKeyboardNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useKeyboardNavigation.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useResponsiveMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useResponsiveMenu.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useSideMenuLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useSideMenuLayout.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useToast.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/hooks/useViewportResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/hooks/useViewportResize.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/images/logo-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/images/logo-mark.svg -------------------------------------------------------------------------------- /application/shared-webapp/ui/images/logo-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/images/logo-wrap.svg -------------------------------------------------------------------------------- /application/shared-webapp/ui/images/powered-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/images/powered-by.svg -------------------------------------------------------------------------------- /application/shared-webapp/ui/index.ts: -------------------------------------------------------------------------------- 1 | // package entry point 2 | -------------------------------------------------------------------------------- /application/shared-webapp/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/package.json -------------------------------------------------------------------------------- /application/shared-webapp/ui/react-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /application/shared-webapp/ui/tailwind-preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/tailwind-preset.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/tailwind.css -------------------------------------------------------------------------------- /application/shared-webapp/ui/theme/ThemeModeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/theme/ThemeModeSelector.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/theme/mode/ThemeMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/theme/mode/ThemeMode.tsx -------------------------------------------------------------------------------- /application/shared-webapp/ui/theme/mode/useStorageThemeMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/theme/mode/useStorageThemeMode.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/theme/mode/useSystemThemeMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/theme/mode/useSystemThemeMode.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/theme/mode/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/theme/mode/utils.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/tsconfig.json -------------------------------------------------------------------------------- /application/shared-webapp/ui/types/FileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/types/FileUpload.ts -------------------------------------------------------------------------------- /application/shared-webapp/ui/utils/responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/ui/utils/responsive.ts -------------------------------------------------------------------------------- /application/shared-webapp/utils/date/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/date/formatDate.ts -------------------------------------------------------------------------------- /application/shared-webapp/utils/hooks/useMemorizedObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/hooks/useMemorizedObject.ts -------------------------------------------------------------------------------- /application/shared-webapp/utils/object/isKeyof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/object/isKeyof.ts -------------------------------------------------------------------------------- /application/shared-webapp/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/package.json -------------------------------------------------------------------------------- /application/shared-webapp/utils/string/getCamelCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/string/getCamelCase.ts -------------------------------------------------------------------------------- /application/shared-webapp/utils/string/getInitials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/string/getInitials.ts -------------------------------------------------------------------------------- /application/shared-webapp/utils/string/getPascalCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/string/getPascalCase.ts -------------------------------------------------------------------------------- /application/shared-webapp/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/shared-webapp/utils/tsconfig.json -------------------------------------------------------------------------------- /application/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/application/turbo.json -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- 1 | application/biome.json -------------------------------------------------------------------------------- /cloud-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/README.md -------------------------------------------------------------------------------- /cloud-infrastructure/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/bicepconfig.json -------------------------------------------------------------------------------- /cloud-infrastructure/cluster/deploy-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/cluster/deploy-cluster.sh -------------------------------------------------------------------------------- /cloud-infrastructure/cluster/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/cluster/firewall.sh -------------------------------------------------------------------------------- /cloud-infrastructure/cluster/grant-database-permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/cluster/grant-database-permissions.sh -------------------------------------------------------------------------------- /cloud-infrastructure/cluster/main-cluster.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/cluster/main-cluster.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/cluster/main-cluster.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/cluster/main-cluster.bicepparam -------------------------------------------------------------------------------- /cloud-infrastructure/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/deploy.sh -------------------------------------------------------------------------------- /cloud-infrastructure/environment/deploy-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/environment/deploy-environment.sh -------------------------------------------------------------------------------- /cloud-infrastructure/environment/main-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/environment/main-environment.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/application-insights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/application-insights.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/communication-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/communication-services.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/container-app.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/container-apps-environment.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/container-registry.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/key-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/key-vault.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/log-analytics-workspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/log-analytics-workspace.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/managed-certificate.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/managed-certificate.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/microsoft-sql-database.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/microsoft-sql-database.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/microsoft-sql-server-diagnostic.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/microsoft-sql-server-diagnostic.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/microsoft-sql-server.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/microsoft-sql-server.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/storage-account.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/user-assigned-managed-identity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/user-assigned-managed-identity.bicep -------------------------------------------------------------------------------- /cloud-infrastructure/modules/virtual-network.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/cloud-infrastructure/modules/virtual-network.bicep -------------------------------------------------------------------------------- /developer-cli/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/.editorconfig -------------------------------------------------------------------------------- /developer-cli/Commands/BuildCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/BuildCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/CheckCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/CheckCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/ClaudeAgentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/ClaudeAgentCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/CoverageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/CoverageCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/DeployCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/DeployCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/End2EndCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/End2EndCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/FormatCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/FormatCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/GitConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/GitConfigCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/InitTaskManagerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/InitTaskManagerCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/InspectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/InspectCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/InstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/InstallCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/McpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/McpCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/PullPlatformPlatformChangesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/PullPlatformPlatformChangesCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/SyncAiRulesAndWorkflowsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/SyncAiRulesAndWorkflowsCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/TestCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/TranslateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/TranslateCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/UninstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/UninstallCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/UpdatePackagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/UpdatePackagesCommand.cs -------------------------------------------------------------------------------- /developer-cli/Commands/WatchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Commands/WatchCommand.cs -------------------------------------------------------------------------------- /developer-cli/DeveloperCli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/DeveloperCli.csproj -------------------------------------------------------------------------------- /developer-cli/DeveloperCli.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/DeveloperCli.slnx -------------------------------------------------------------------------------- /developer-cli/DeveloperCli.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/DeveloperCli.slnx.DotSettings -------------------------------------------------------------------------------- /developer-cli/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Directory.Build.props -------------------------------------------------------------------------------- /developer-cli/Fonts/small.flf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Fonts/small.flf -------------------------------------------------------------------------------- /developer-cli/Installation/ChangeDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Installation/ChangeDetection.cs -------------------------------------------------------------------------------- /developer-cli/Installation/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Installation/Configuration.cs -------------------------------------------------------------------------------- /developer-cli/Installation/PlaywrightInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Installation/PlaywrightInstaller.cs -------------------------------------------------------------------------------- /developer-cli/Installation/Prerequisite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Installation/Prerequisite.cs -------------------------------------------------------------------------------- /developer-cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Program.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/ClaudeAgentLifecycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/ClaudeAgentLifecycle.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/CommandLineArgumentsPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/CommandLineArgumentsPreprocessor.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/DockerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/DockerServer.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/GitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/GitHelper.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/GithubHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/GithubHelper.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/Logger.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/ProcessHelper.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/SecretHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/SecretHelper.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/SelfContainedSystemHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/SelfContainedSystemHelper.cs -------------------------------------------------------------------------------- /developer-cli/Utilities/TimeSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/Utilities/TimeSpanExtensions.cs -------------------------------------------------------------------------------- /developer-cli/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/dotnet-tools.json -------------------------------------------------------------------------------- /developer-cli/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformplatform/PlatformPlatform/HEAD/developer-cli/global.json --------------------------------------------------------------------------------