├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github ├── dependabot.yml ├── release-image │ ├── Dockerfile │ └── localhost.conf └── workflows │ ├── configuration.json │ ├── publish-devcontainer.yml │ ├── publish-docker.yml │ ├── publish-nuget.yaml │ ├── publish-release.yml │ └── test.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Hippo.sln ├── LICENSE ├── README.md ├── scripts ├── README.md └── nomad-dev.sh ├── src ├── Application │ ├── Accounts │ │ └── Commands │ │ │ ├── CreateAccountCommand.cs │ │ │ ├── CreateAccountCommandValidator.cs │ │ │ ├── CreateTokenCommand.cs │ │ │ ├── LoginAccountCommand.cs │ │ │ └── LogoutAccountCommand.cs │ ├── Application.csproj │ ├── Apps │ │ ├── Commands │ │ │ ├── CreateAppCommand.cs │ │ │ ├── CreateAppCommandValidator.cs │ │ │ ├── DeleteAppCommand.cs │ │ │ ├── PurgeAppsCommand.cs │ │ │ ├── UpdateAppCommand.cs │ │ │ └── UpdateAppCommandValidator.cs │ │ ├── EventHandlers │ │ │ ├── AppCreatedEventHandler.cs │ │ │ ├── AppDeletedEventHandler.cs │ │ │ └── InitialRevisionImport.cs │ │ ├── Extensions │ │ │ └── AppExtensions.cs │ │ └── Queries │ │ │ ├── AppChannelListItem.cs │ │ │ ├── AppItem.cs │ │ │ ├── AppRecord.cs │ │ │ ├── AppSummaryDto.cs │ │ │ ├── ExportAppsQuery.cs │ │ │ ├── ExportAppsVm.cs │ │ │ ├── GetAppQuery.cs │ │ │ └── GetAppsQuery.cs │ ├── Certificates │ │ ├── Commands │ │ │ ├── CreateCertificateCommand.cs │ │ │ ├── CreateCertificateCommandValidator.cs │ │ │ ├── DeleteCertificateCommand.cs │ │ │ ├── PurgeCertificatesCommand.cs │ │ │ ├── UpdateCertificateCommand.cs │ │ │ └── UpdateCertificateCommandValidator.cs │ │ ├── EventHandlers │ │ │ ├── CertificateCreatedEventHandler.cs │ │ │ └── CertificateDeletedEventHandler.cs │ │ └── Queries │ │ │ ├── CertificateItem.cs │ │ │ ├── CertificateRecord.cs │ │ │ ├── ExportCertificatesQuery.cs │ │ │ ├── ExportCertificatesVm.cs │ │ │ ├── GetCertificateQuery.cs │ │ │ └── GetCertificatesQuery.cs │ ├── ChannelStatuses │ │ └── Queries │ │ │ ├── ChannelJobStatusItem.cs │ │ │ └── GetChannelStatusesQuery.cs │ ├── Channels │ │ ├── Commands │ │ │ ├── CreateChannelCommand.cs │ │ │ ├── CreateChannelCommandValidator.cs │ │ │ ├── DeleteChannelCommand.cs │ │ │ ├── PatchChannelCommand.cs │ │ │ ├── PurgeChannelsCommand.cs │ │ │ ├── UpdateChannelCommand.cs │ │ │ ├── UpdateChannelCommandValidator.cs │ │ │ └── UpdateDesiredStatusCommand.cs │ │ ├── EventHandlers │ │ │ ├── ActiveRevisionChangedEventHandler.cs │ │ │ ├── CertificateModifiedEventHandler.cs │ │ │ ├── ChannelCreatedEventHandler.cs │ │ │ ├── ChannelDeletedEventHandler.cs │ │ │ └── ChannelStatusModifiedEventHandler.cs │ │ └── Queries │ │ │ ├── ChannelExtensions.cs │ │ │ ├── ChannelItem.cs │ │ │ ├── ChannelRecord.cs │ │ │ ├── ExportChannelsQuery.cs │ │ │ ├── ExportChannelsVm.cs │ │ │ ├── GetChannelLogsQuery.cs │ │ │ ├── GetChannelLogsVm.cs │ │ │ ├── GetChannelQuery.cs │ │ │ └── GetChannelsQuery.cs │ ├── Common │ │ ├── Attributes │ │ │ └── NoMapAttribute.cs │ │ ├── Behaviours │ │ │ ├── AuthorizationBehaviour.cs │ │ │ ├── LoggingBehaviour.cs │ │ │ ├── PerformanceBehaviour.cs │ │ │ ├── UnhandledExceptionBehaviour.cs │ │ │ └── ValidationBehaviour.cs │ │ ├── Config │ │ │ └── HippoConfig.cs │ │ ├── EventHandlers │ │ │ ├── CreatedEventHandler.cs │ │ │ ├── DeletedEventHandler.cs │ │ │ └── ModifiedEventHandler.cs │ │ ├── Exceptions │ │ │ ├── ForbiddenAccessException.cs │ │ │ ├── JobFailedException.cs │ │ │ ├── LoginFailedException.cs │ │ │ ├── NotFoundException.cs │ │ │ └── ValidationException.cs │ │ ├── Extensions │ │ │ └── IgnoreNoMapExtensions.cs │ │ ├── Interfaces │ │ │ ├── BindleService │ │ │ │ ├── IStorageService.cs │ │ │ │ ├── RevisionComponent.cs │ │ │ │ ├── RevisionComponentTrigger.cs │ │ │ │ ├── RevisionDetails.cs │ │ │ │ ├── RevisionSpinToml.cs │ │ │ │ └── RevisionTrigger.cs │ │ │ ├── IApplicationDbContext.cs │ │ │ ├── ICurrentUserService.cs │ │ │ ├── IDateTime.cs │ │ │ ├── IIdentityService.cs │ │ │ ├── IJobService.cs │ │ │ ├── IJsonFileBuilder.cs │ │ │ ├── ISignInService.cs │ │ │ └── ITokenService.cs │ │ ├── Mappings │ │ │ ├── IMapFrom.cs │ │ │ ├── MappingExtensions.cs │ │ │ └── MappingProfile.cs │ │ ├── Models │ │ │ ├── PaginatedList.cs │ │ │ └── Result.cs │ │ └── Security │ │ │ ├── AuthorizeAttribute.cs │ │ │ ├── UserPolicy.cs │ │ │ └── UserRole.cs │ ├── DependencyInjection.cs │ ├── EnvironmentVariables │ │ ├── Commands │ │ │ └── UpdateEnvironmentVariableDto.cs │ │ ├── EventHandlers │ │ │ ├── EnvironmentVariableCreatedEventHandler.cs │ │ │ └── EnvironmentVariableDeletedEventHandler.cs │ │ └── Queries │ │ │ ├── EnvironmentVariableItem.cs │ │ │ └── EnvironmentVariableRecord.cs │ ├── JobStatuses │ │ └── Queries │ │ │ ├── ChannelJobStatusItem.cs │ │ │ ├── GetJobStatusQuery.cs │ │ │ └── GetJobStatusesQuery.cs │ ├── Jobs │ │ ├── Job.cs │ │ ├── JobStatus.cs │ │ └── README.md │ ├── Revisions │ │ ├── Commands │ │ │ ├── CreateRevisionCommand.cs │ │ │ ├── CreateRevisionCommandValidator.cs │ │ │ ├── DeleteRevisionCommand.cs │ │ │ ├── ImportRevisionsCommand.cs │ │ │ ├── PurgeRevisionsCommand.cs │ │ │ ├── RegisterRevisionCommand.cs │ │ │ ├── RegisterRevisionCommandValidator.cs │ │ │ └── UpdateRevisionDetailsCommand.cs │ │ ├── EventHandlers │ │ │ ├── RevisionCreatedEventHandler.cs │ │ │ ├── RevisionDeletedEventHandler.cs │ │ │ └── UpdateRevisionDetails.cs │ │ └── Queries │ │ │ ├── ExportRevisionsQuery.cs │ │ │ ├── ExportRevisionsVm.cs │ │ │ ├── GetRevisionsQuery.cs │ │ │ ├── RevisionComponentDto.cs │ │ │ ├── RevisionItem.cs │ │ │ ├── RevisionRecord.cs │ │ │ └── RevisionsVm.cs │ ├── Rules │ │ └── RevisionRangeRule.cs │ └── Storage │ │ └── Queries │ │ └── GetStoragesQuery.cs ├── Core │ ├── Common │ │ ├── AuditableEntity.cs │ │ ├── BaseEntity.cs │ │ ├── BaseEvent.cs │ │ └── ValueObject.cs │ ├── Core.csproj │ ├── Entities │ │ ├── App.cs │ │ ├── Certificate.cs │ │ ├── Channel.cs │ │ ├── EnvironmentVariable.cs │ │ ├── Revision.cs │ │ └── RevisionComponent.cs │ ├── Enums │ │ ├── ChannelRevisionSelectionStrategy.cs │ │ ├── DesiredStatus.cs │ │ └── RegistrationMode.cs │ ├── Events │ │ ├── CreatedEvent.cs │ │ ├── DeletedEvent.cs │ │ └── ModifiedEvent.cs │ ├── Exceptions │ │ └── InvalidRevisionRangeRule.cs │ ├── Models │ │ ├── Extensions │ │ │ ├── FieldExtensions.cs │ │ │ └── FilteringExtensions.cs │ │ ├── Field.cs │ │ ├── Filter.cs │ │ └── Page.cs │ ├── Serialization │ │ └── FieldConverter.cs │ └── _Imports.cs ├── Infrastructure │ ├── Common │ │ └── MediatorExtensions.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ ├── ApplicationDbContextSeed.cs │ │ ├── Configurations │ │ │ ├── AppConfiguration.cs │ │ │ ├── CertificateConfiguration.cs │ │ │ ├── ChannelConfiguration.cs │ │ │ ├── EnvironmentVariableConfiguration.cs │ │ │ ├── RevisionComponentConfiguration.cs │ │ │ └── RevisionConfiguration.cs │ │ ├── Interceptors │ │ │ └── AuditableEntitySaveChangesInterceptor.cs │ │ ├── Migrations │ │ │ ├── Postgresql │ │ │ │ ├── 20220203223719_Initial.Designer.cs │ │ │ │ ├── 20220203223719_Initial.cs │ │ │ │ ├── 20220509110744_AddRevisionComponents.Designer.cs │ │ │ │ ├── 20220509110744_AddRevisionComponents.cs │ │ │ │ ├── 20220510121750_RemoveRevisionBaseAndType.Designer.cs │ │ │ │ ├── 20220510121750_RemoveRevisionBaseAndType.cs │ │ │ │ ├── 20220510134138_AppNameAndStorageShouldNotBeNullable.Designer.cs │ │ │ │ ├── 20220510134138_AppNameAndStorageShouldNotBeNullable.cs │ │ │ │ ├── 20220510134947_ChannelNameShouldNotBeNullable.Designer.cs │ │ │ │ ├── 20220510134947_ChannelNameShouldNotBeNullable.cs │ │ │ │ ├── 20220526124417_AddRedisComponentElements.Designer.cs │ │ │ │ ├── 20220526124417_AddRedisComponentElements.cs │ │ │ │ ├── 20220620132406_AddChannelLastPublishAt.Designer.cs │ │ │ │ ├── 20220620132406_AddChannelLastPublishAt.cs │ │ │ │ ├── 20220808121551_AddChannelDesiredStatus.Designer.cs │ │ │ │ ├── 20220808121551_AddChannelDesiredStatus.cs │ │ │ │ └── PostgresqlDbContextModelSnapshot.cs │ │ │ └── Sqlite │ │ │ │ ├── 20211214002400_Initial.Designer.cs │ │ │ │ ├── 20211214002400_Initial.cs │ │ │ │ ├── 20211216231709_AddFieldConstraints.Designer.cs │ │ │ │ ├── 20211216231709_AddFieldConstraints.cs │ │ │ │ ├── 20220118175137_AddCertificates.Designer.cs │ │ │ │ ├── 20220118175137_AddCertificates.cs │ │ │ │ ├── 20220509110244_AddRevisionComponents.Designer.cs │ │ │ │ ├── 20220509110244_AddRevisionComponents.cs │ │ │ │ ├── 20220510123344_RemoveRevisionBaseAndType.Designer.cs │ │ │ │ ├── 20220510123344_RemoveRevisionBaseAndType.cs │ │ │ │ ├── 20220510134157_AppNameAndStorageShouldNotBeNullable.Designer.cs │ │ │ │ ├── 20220510134157_AppNameAndStorageShouldNotBeNullable.cs │ │ │ │ ├── 20220510135000_ChannelNameShouldNotBeNullable.Designer.cs │ │ │ │ ├── 20220510135000_ChannelNameShouldNotBeNullable.cs │ │ │ │ ├── 20220526125320_AddRedisComponentElements.Designer.cs │ │ │ │ ├── 20220526125320_AddRedisComponentElements.cs │ │ │ │ ├── 20220620132457_AddChannelLastPublishAt.Designer.cs │ │ │ │ ├── 20220620132457_AddChannelLastPublishAt.cs │ │ │ │ ├── 20220808121640_AddChannelDesiredStatus.Designer.cs │ │ │ │ ├── 20220808121640_AddChannelDesiredStatus.cs │ │ │ │ └── SqliteDbContextModelSnapshot.cs │ │ ├── PostgresqlDbContext.cs │ │ └── SqliteDbContext.cs │ ├── DependencyInjection.cs │ ├── Exceptions │ │ └── InvalidDatabaseDriverException.cs │ ├── Files │ │ └── JsonFileBuilder.cs │ ├── HealthChecks │ │ ├── BindleHealthCheck.cs │ │ └── NomadHealthCheck.cs │ ├── Identity │ │ ├── Account.cs │ │ ├── IdentityResultExtensions.cs │ │ ├── IdentityService.cs │ │ ├── SignInResultExtensions.cs │ │ └── SignInService.cs │ ├── Infrastructure.csproj │ ├── Jobs │ │ └── NomadJob.cs │ └── Services │ │ ├── BindleService.cs │ │ ├── DateTimeService.cs │ │ ├── NomadJobService.cs │ │ └── TokenService.cs └── Web │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Api │ ├── AccountsController.cs │ ├── ApiControllerBase.cs │ ├── AppsController.cs │ ├── AuthTokensController.cs │ ├── CertificatesController.cs │ ├── ChannelStatusesController.cs │ ├── ChannelsController.cs │ ├── RevisionsController.cs │ └── StoragesController.cs │ ├── ClientApp │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── openapitools.json │ ├── package-lock.json │ ├── package.json │ ├── proxy.conf.js │ ├── src │ │ ├── app │ │ │ ├── _helpers │ │ │ │ ├── auth.guard.spec.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── auth.interceptor.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── must-match.validator.ts │ │ │ │ ├── token.interceptor.spec.ts │ │ │ │ └── token.interceptor.ts │ │ │ ├── _interfaces │ │ │ │ └── app-config.ts │ │ │ ├── _services │ │ │ │ ├── app-config.service.ts │ │ │ │ ├── session.service.spec.ts │ │ │ │ └── session.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── components │ │ │ │ ├── account │ │ │ │ │ ├── login │ │ │ │ │ │ ├── login.component.css │ │ │ │ │ │ ├── login.component.html │ │ │ │ │ │ ├── login.component.spec.ts │ │ │ │ │ │ └── login.component.ts │ │ │ │ │ └── register │ │ │ │ │ │ ├── register.component.css │ │ │ │ │ │ ├── register.component.html │ │ │ │ │ │ ├── register.component.spec.ts │ │ │ │ │ │ └── register.component.ts │ │ │ │ ├── application │ │ │ │ │ ├── list │ │ │ │ │ │ ├── list.component.css │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ ├── new │ │ │ │ │ │ ├── new.component.css │ │ │ │ │ │ ├── new.component.html │ │ │ │ │ │ ├── new.component.spec.ts │ │ │ │ │ │ └── new.component.ts │ │ │ │ │ └── settings │ │ │ │ │ │ ├── settings.component.css │ │ │ │ │ │ ├── settings.component.html │ │ │ │ │ │ ├── settings.component.spec.ts │ │ │ │ │ │ └── settings.component.ts │ │ │ │ ├── channel │ │ │ │ │ ├── channel.component.css │ │ │ │ │ ├── channel.component.html │ │ │ │ │ ├── channel.component.spec.ts │ │ │ │ │ ├── channel.component.ts │ │ │ │ │ ├── logs │ │ │ │ │ │ ├── logs.component.css │ │ │ │ │ │ ├── logs.component.html │ │ │ │ │ │ ├── logs.component.spec.ts │ │ │ │ │ │ └── logs.component.ts │ │ │ │ │ ├── new │ │ │ │ │ │ ├── new.component.css │ │ │ │ │ │ ├── new.component.html │ │ │ │ │ │ ├── new.component.spec.ts │ │ │ │ │ │ └── new.component.ts │ │ │ │ │ └── overview │ │ │ │ │ │ ├── overview.component.css │ │ │ │ │ │ ├── overview.component.html │ │ │ │ │ │ ├── overview.component.spec.ts │ │ │ │ │ │ └── overview.component.ts │ │ │ │ ├── environment-variable │ │ │ │ │ └── list │ │ │ │ │ │ ├── list.component.css │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ │ └── list.component.ts │ │ │ │ ├── health-check │ │ │ │ │ ├── health-check.component.css │ │ │ │ │ ├── health-check.component.html │ │ │ │ │ ├── health-check.component.spec.ts │ │ │ │ │ └── health-check.component.ts │ │ │ │ ├── helpers │ │ │ │ │ ├── success │ │ │ │ │ │ ├── success.component.css │ │ │ │ │ │ ├── success.component.html │ │ │ │ │ │ ├── success.component.spec.ts │ │ │ │ │ │ └── success.component.ts │ │ │ │ │ └── warning │ │ │ │ │ │ ├── warning.component.css │ │ │ │ │ │ ├── warning.component.html │ │ │ │ │ │ ├── warning.component.spec.ts │ │ │ │ │ │ └── warning.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ ├── navbar.component.spec.ts │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── not-found │ │ │ │ │ ├── not-found.component.css │ │ │ │ │ ├── not-found.component.html │ │ │ │ │ ├── not-found.component.spec.ts │ │ │ │ │ └── not-found.component.ts │ │ │ │ └── styleguide │ │ │ │ │ ├── styleguide.component.css │ │ │ │ │ ├── styleguide.component.html │ │ │ │ │ ├── styleguide.component.spec.ts │ │ │ │ │ └── styleguide.component.ts │ │ │ └── core │ │ │ │ └── api │ │ │ │ └── v1 │ │ │ │ ├── .gitignore │ │ │ │ ├── .openapi-generator-ignore │ │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ │ ├── README.md │ │ │ │ ├── api.module.ts │ │ │ │ ├── api │ │ │ │ ├── account.service.ts │ │ │ │ ├── accounts.service.ts │ │ │ │ ├── api.ts │ │ │ │ ├── app.service.ts │ │ │ │ ├── apps.service.ts │ │ │ │ ├── authTokens.service.ts │ │ │ │ ├── certificate.service.ts │ │ │ │ ├── certificates.service.ts │ │ │ │ ├── channel.service.ts │ │ │ │ ├── channelStatuses.service.ts │ │ │ │ ├── channels.service.ts │ │ │ │ ├── jobStatus.service.ts │ │ │ │ ├── revision.service.ts │ │ │ │ ├── revisions.service.ts │ │ │ │ ├── storage.service.ts │ │ │ │ └── storages.service.ts │ │ │ │ ├── configuration.ts │ │ │ │ ├── encoder.ts │ │ │ │ ├── git_push.sh │ │ │ │ ├── index.ts │ │ │ │ ├── model │ │ │ │ ├── app.ts │ │ │ │ ├── appChannelListItem.ts │ │ │ │ ├── appItem.ts │ │ │ │ ├── appItemPage.ts │ │ │ │ ├── appSummaryDto.ts │ │ │ │ ├── certificate.ts │ │ │ │ ├── certificateItem.ts │ │ │ │ ├── certificateItemPage.ts │ │ │ │ ├── channel.ts │ │ │ │ ├── channelItem.ts │ │ │ │ ├── channelItemPage.ts │ │ │ │ ├── channelJobStatusItem.ts │ │ │ │ ├── channelJobStatusItemPage.ts │ │ │ │ ├── channelRevisionSelectionStrategy.ts │ │ │ │ ├── channelRevisionSelectionStrategyField.ts │ │ │ │ ├── channelStatus.ts │ │ │ │ ├── createAccountCommand.ts │ │ │ │ ├── createAppCommand.ts │ │ │ │ ├── createCertificateCommand.ts │ │ │ │ ├── createChannelCommand.ts │ │ │ │ ├── createEnvironmentVariableCommand.ts │ │ │ │ ├── createTokenCommand.ts │ │ │ │ ├── desiredStatus.ts │ │ │ │ ├── domainEvent.ts │ │ │ │ ├── environmentVariable.ts │ │ │ │ ├── environmentVariableDto.ts │ │ │ │ ├── environmentVariableItem.ts │ │ │ │ ├── environmentVariablesVm.ts │ │ │ │ ├── getChannelLogsVm.ts │ │ │ │ ├── guidNullableField.ts │ │ │ │ ├── jobStatus.ts │ │ │ │ ├── models.ts │ │ │ │ ├── patchChannelCommand.ts │ │ │ │ ├── registerRevisionCommand.ts │ │ │ │ ├── revision.ts │ │ │ │ ├── revisionComponent.ts │ │ │ │ ├── revisionComponentDto.ts │ │ │ │ ├── revisionComponentTrigger.ts │ │ │ │ ├── revisionDetails.ts │ │ │ │ ├── revisionDetailsDto.ts │ │ │ │ ├── revisionDetailsVm.ts │ │ │ │ ├── revisionItem.ts │ │ │ │ ├── revisionItemPage.ts │ │ │ │ ├── revisionSpinToml.ts │ │ │ │ ├── revisionTrigger.ts │ │ │ │ ├── stringField.ts │ │ │ │ ├── stringPage.ts │ │ │ │ ├── tokenInfo.ts │ │ │ │ ├── updateAppCommand.ts │ │ │ │ ├── updateCertificateCommand.ts │ │ │ │ ├── updateChannelCommand.ts │ │ │ │ ├── updateDesiredStatusCommand.ts │ │ │ │ ├── updateEnvironmentVariableCommand.ts │ │ │ │ ├── updateEnvironmentVariableDto.ts │ │ │ │ ├── updateEnvironmentVariableDtoListField.ts │ │ │ │ └── updateEnvironmentVariablesCommand.ts │ │ │ │ └── variables.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── config.json │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json │ ├── Extensions │ ├── HealthCheckExtensions.cs │ └── HealthInfo.cs │ ├── Filters │ └── ApiExceptionFilterAttribute.cs │ ├── Helpers │ └── ApiControllerNameConvention.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ └── CurrentUserService.cs │ ├── Web.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── nuget.config │ └── package-lock.json └── tests ├── Application.UnitTests ├── Application.UnitTests.csproj ├── Common │ ├── Behaviours │ │ └── RequestLoggerTests.cs │ ├── Exceptions │ │ └── ValidationExceptionTests.cs │ └── Mappings │ │ └── MappingTests.cs └── Revisions │ └── Queries │ └── RevisionItemTests.cs ├── Core.UnitTests ├── Common │ └── AuditableEntityTests.cs ├── Core.UnitTests.csproj ├── Enums │ ├── ChannelRevisionSelectionStrategyTests.cs │ └── RegistrationModeTests.cs ├── Events │ └── EventTests.cs └── Exceptions │ └── ExceptionTests.cs ├── Hippo.FunctionalTests ├── Application │ ├── Accounts │ │ └── Commands │ │ │ ├── CreateAccountTests.cs │ │ │ └── CreateTokenTests.cs │ ├── Apps │ │ └── Commands │ │ │ └── CreateAppTests.cs │ ├── Certificates │ │ └── Commands │ │ │ └── CreateCertificateTests.cs │ ├── Channels │ │ └── Commands │ │ │ ├── CreateChannelTests.cs │ │ │ └── UpdateChannelTests.cs │ └── Revisions │ │ └── Commands │ │ └── CreateRevisionTests.cs ├── FakeStorageService.cs ├── Hippo.FunctionalTests.csproj ├── TestBase.cs └── appsettings.json └── Infrastructure.UnitTests ├── Infrastructure.UnitTests.csproj └── Services └── BindleServiceTests.cs /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/release-image/Dockerfile -------------------------------------------------------------------------------- /.github/release-image/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/release-image/localhost.conf -------------------------------------------------------------------------------- /.github/workflows/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/workflows/configuration.json -------------------------------------------------------------------------------- /.github/workflows/publish-devcontainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/workflows/publish-devcontainer.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/workflows/publish-docker.yml -------------------------------------------------------------------------------- /.github/workflows/publish-nuget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/workflows/publish-nuget.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Hippo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/Hippo.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/nomad-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/scripts/nomad-dev.sh -------------------------------------------------------------------------------- /src/Application/Accounts/Commands/CreateAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Accounts/Commands/CreateAccountCommand.cs -------------------------------------------------------------------------------- /src/Application/Accounts/Commands/CreateAccountCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Accounts/Commands/CreateAccountCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Accounts/Commands/CreateTokenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Accounts/Commands/CreateTokenCommand.cs -------------------------------------------------------------------------------- /src/Application/Accounts/Commands/LoginAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Accounts/Commands/LoginAccountCommand.cs -------------------------------------------------------------------------------- /src/Application/Accounts/Commands/LogoutAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Accounts/Commands/LogoutAccountCommand.cs -------------------------------------------------------------------------------- /src/Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Application.csproj -------------------------------------------------------------------------------- /src/Application/Apps/Commands/CreateAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Commands/CreateAppCommand.cs -------------------------------------------------------------------------------- /src/Application/Apps/Commands/CreateAppCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Commands/CreateAppCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Apps/Commands/DeleteAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Commands/DeleteAppCommand.cs -------------------------------------------------------------------------------- /src/Application/Apps/Commands/PurgeAppsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Commands/PurgeAppsCommand.cs -------------------------------------------------------------------------------- /src/Application/Apps/Commands/UpdateAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Commands/UpdateAppCommand.cs -------------------------------------------------------------------------------- /src/Application/Apps/Commands/UpdateAppCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Commands/UpdateAppCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Apps/EventHandlers/AppCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/EventHandlers/AppCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Apps/EventHandlers/AppDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/EventHandlers/AppDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Apps/EventHandlers/InitialRevisionImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/EventHandlers/InitialRevisionImport.cs -------------------------------------------------------------------------------- /src/Application/Apps/Extensions/AppExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Extensions/AppExtensions.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/AppChannelListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/AppChannelListItem.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/AppItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/AppItem.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/AppRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/AppRecord.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/AppSummaryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/AppSummaryDto.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/ExportAppsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/ExportAppsQuery.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/ExportAppsVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/ExportAppsVm.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/GetAppQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/GetAppQuery.cs -------------------------------------------------------------------------------- /src/Application/Apps/Queries/GetAppsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Apps/Queries/GetAppsQuery.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Commands/CreateCertificateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Commands/CreateCertificateCommand.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Commands/CreateCertificateCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Commands/CreateCertificateCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Commands/DeleteCertificateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Commands/DeleteCertificateCommand.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Commands/PurgeCertificatesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Commands/PurgeCertificatesCommand.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Commands/UpdateCertificateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Commands/UpdateCertificateCommand.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Commands/UpdateCertificateCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Commands/UpdateCertificateCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Certificates/EventHandlers/CertificateCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/EventHandlers/CertificateCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Certificates/EventHandlers/CertificateDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/EventHandlers/CertificateDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Queries/CertificateItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Queries/CertificateItem.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Queries/CertificateRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Queries/CertificateRecord.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Queries/ExportCertificatesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Queries/ExportCertificatesQuery.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Queries/ExportCertificatesVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Queries/ExportCertificatesVm.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Queries/GetCertificateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Queries/GetCertificateQuery.cs -------------------------------------------------------------------------------- /src/Application/Certificates/Queries/GetCertificatesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Certificates/Queries/GetCertificatesQuery.cs -------------------------------------------------------------------------------- /src/Application/ChannelStatuses/Queries/ChannelJobStatusItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/ChannelStatuses/Queries/ChannelJobStatusItem.cs -------------------------------------------------------------------------------- /src/Application/ChannelStatuses/Queries/GetChannelStatusesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/ChannelStatuses/Queries/GetChannelStatusesQuery.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/CreateChannelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/CreateChannelCommand.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/CreateChannelCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/CreateChannelCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/DeleteChannelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/DeleteChannelCommand.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/PatchChannelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/PatchChannelCommand.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/PurgeChannelsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/PurgeChannelsCommand.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/UpdateChannelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/UpdateChannelCommand.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/UpdateChannelCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/UpdateChannelCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Channels/Commands/UpdateDesiredStatusCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Commands/UpdateDesiredStatusCommand.cs -------------------------------------------------------------------------------- /src/Application/Channels/EventHandlers/ActiveRevisionChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/EventHandlers/ActiveRevisionChangedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Channels/EventHandlers/CertificateModifiedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/EventHandlers/CertificateModifiedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Channels/EventHandlers/ChannelCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/EventHandlers/ChannelCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Channels/EventHandlers/ChannelDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/EventHandlers/ChannelDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Channels/EventHandlers/ChannelStatusModifiedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/EventHandlers/ChannelStatusModifiedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/ChannelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/ChannelExtensions.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/ChannelItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/ChannelItem.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/ChannelRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/ChannelRecord.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/ExportChannelsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/ExportChannelsQuery.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/ExportChannelsVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/ExportChannelsVm.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/GetChannelLogsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/GetChannelLogsQuery.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/GetChannelLogsVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/GetChannelLogsVm.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/GetChannelQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/GetChannelQuery.cs -------------------------------------------------------------------------------- /src/Application/Channels/Queries/GetChannelsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Channels/Queries/GetChannelsQuery.cs -------------------------------------------------------------------------------- /src/Application/Common/Attributes/NoMapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Attributes/NoMapAttribute.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/AuthorizationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Behaviours/AuthorizationBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/LoggingBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Behaviours/LoggingBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/PerformanceBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Behaviours/PerformanceBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/UnhandledExceptionBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Behaviours/UnhandledExceptionBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/ValidationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Behaviours/ValidationBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Config/HippoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Config/HippoConfig.cs -------------------------------------------------------------------------------- /src/Application/Common/EventHandlers/CreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/EventHandlers/CreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Common/EventHandlers/DeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/EventHandlers/DeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Common/EventHandlers/ModifiedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/EventHandlers/ModifiedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/ForbiddenAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Exceptions/ForbiddenAccessException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/JobFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Exceptions/JobFailedException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/LoginFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Exceptions/LoginFailedException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Exceptions/ValidationException.cs -------------------------------------------------------------------------------- /src/Application/Common/Extensions/IgnoreNoMapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Extensions/IgnoreNoMapExtensions.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/BindleService/IStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/BindleService/IStorageService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/BindleService/RevisionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/BindleService/RevisionComponent.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/BindleService/RevisionComponentTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/BindleService/RevisionComponentTrigger.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/BindleService/RevisionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/BindleService/RevisionDetails.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/BindleService/RevisionSpinToml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/BindleService/RevisionSpinToml.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/BindleService/RevisionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/BindleService/RevisionTrigger.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/IApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/ICurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/ICurrentUserService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/IDateTime.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/IIdentityService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IJobService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/IJobService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/IJsonFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/IJsonFileBuilder.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/ISignInService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/ISignInService.cs -------------------------------------------------------------------------------- /src/Application/Common/Interfaces/ITokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Interfaces/ITokenService.cs -------------------------------------------------------------------------------- /src/Application/Common/Mappings/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Mappings/IMapFrom.cs -------------------------------------------------------------------------------- /src/Application/Common/Mappings/MappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Mappings/MappingExtensions.cs -------------------------------------------------------------------------------- /src/Application/Common/Mappings/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Mappings/MappingProfile.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/PaginatedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Models/PaginatedList.cs -------------------------------------------------------------------------------- /src/Application/Common/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Models/Result.cs -------------------------------------------------------------------------------- /src/Application/Common/Security/AuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Security/AuthorizeAttribute.cs -------------------------------------------------------------------------------- /src/Application/Common/Security/UserPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Security/UserPolicy.cs -------------------------------------------------------------------------------- /src/Application/Common/Security/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Common/Security/UserRole.cs -------------------------------------------------------------------------------- /src/Application/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/DependencyInjection.cs -------------------------------------------------------------------------------- /src/Application/EnvironmentVariables/Commands/UpdateEnvironmentVariableDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/EnvironmentVariables/Commands/UpdateEnvironmentVariableDto.cs -------------------------------------------------------------------------------- /src/Application/EnvironmentVariables/EventHandlers/EnvironmentVariableCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/EnvironmentVariables/EventHandlers/EnvironmentVariableCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/EnvironmentVariables/EventHandlers/EnvironmentVariableDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/EnvironmentVariables/EventHandlers/EnvironmentVariableDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/EnvironmentVariables/Queries/EnvironmentVariableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/EnvironmentVariables/Queries/EnvironmentVariableItem.cs -------------------------------------------------------------------------------- /src/Application/EnvironmentVariables/Queries/EnvironmentVariableRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/EnvironmentVariables/Queries/EnvironmentVariableRecord.cs -------------------------------------------------------------------------------- /src/Application/JobStatuses/Queries/ChannelJobStatusItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/JobStatuses/Queries/ChannelJobStatusItem.cs -------------------------------------------------------------------------------- /src/Application/JobStatuses/Queries/GetJobStatusQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/JobStatuses/Queries/GetJobStatusQuery.cs -------------------------------------------------------------------------------- /src/Application/JobStatuses/Queries/GetJobStatusesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/JobStatuses/Queries/GetJobStatusesQuery.cs -------------------------------------------------------------------------------- /src/Application/Jobs/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Jobs/Job.cs -------------------------------------------------------------------------------- /src/Application/Jobs/JobStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Jobs/JobStatus.cs -------------------------------------------------------------------------------- /src/Application/Jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Jobs/README.md -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/CreateRevisionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/CreateRevisionCommand.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/CreateRevisionCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/CreateRevisionCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/DeleteRevisionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/DeleteRevisionCommand.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/ImportRevisionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/ImportRevisionsCommand.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/PurgeRevisionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/PurgeRevisionsCommand.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/RegisterRevisionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/RegisterRevisionCommand.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/RegisterRevisionCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/RegisterRevisionCommandValidator.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Commands/UpdateRevisionDetailsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Commands/UpdateRevisionDetailsCommand.cs -------------------------------------------------------------------------------- /src/Application/Revisions/EventHandlers/RevisionCreatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/EventHandlers/RevisionCreatedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Revisions/EventHandlers/RevisionDeletedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/EventHandlers/RevisionDeletedEventHandler.cs -------------------------------------------------------------------------------- /src/Application/Revisions/EventHandlers/UpdateRevisionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/EventHandlers/UpdateRevisionDetails.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Queries/ExportRevisionsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Queries/ExportRevisionsQuery.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Queries/ExportRevisionsVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Queries/ExportRevisionsVm.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Queries/GetRevisionsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Queries/GetRevisionsQuery.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Queries/RevisionComponentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Queries/RevisionComponentDto.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Queries/RevisionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Queries/RevisionItem.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Queries/RevisionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Queries/RevisionRecord.cs -------------------------------------------------------------------------------- /src/Application/Revisions/Queries/RevisionsVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Revisions/Queries/RevisionsVm.cs -------------------------------------------------------------------------------- /src/Application/Rules/RevisionRangeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Rules/RevisionRangeRule.cs -------------------------------------------------------------------------------- /src/Application/Storage/Queries/GetStoragesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Application/Storage/Queries/GetStoragesQuery.cs -------------------------------------------------------------------------------- /src/Core/Common/AuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Common/AuditableEntity.cs -------------------------------------------------------------------------------- /src/Core/Common/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Common/BaseEntity.cs -------------------------------------------------------------------------------- /src/Core/Common/BaseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Common/BaseEvent.cs -------------------------------------------------------------------------------- /src/Core/Common/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Common/ValueObject.cs -------------------------------------------------------------------------------- /src/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Core.csproj -------------------------------------------------------------------------------- /src/Core/Entities/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Entities/App.cs -------------------------------------------------------------------------------- /src/Core/Entities/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Entities/Certificate.cs -------------------------------------------------------------------------------- /src/Core/Entities/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Entities/Channel.cs -------------------------------------------------------------------------------- /src/Core/Entities/EnvironmentVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Entities/EnvironmentVariable.cs -------------------------------------------------------------------------------- /src/Core/Entities/Revision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Entities/Revision.cs -------------------------------------------------------------------------------- /src/Core/Entities/RevisionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Entities/RevisionComponent.cs -------------------------------------------------------------------------------- /src/Core/Enums/ChannelRevisionSelectionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Enums/ChannelRevisionSelectionStrategy.cs -------------------------------------------------------------------------------- /src/Core/Enums/DesiredStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Enums/DesiredStatus.cs -------------------------------------------------------------------------------- /src/Core/Enums/RegistrationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Enums/RegistrationMode.cs -------------------------------------------------------------------------------- /src/Core/Events/CreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Events/CreatedEvent.cs -------------------------------------------------------------------------------- /src/Core/Events/DeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Events/DeletedEvent.cs -------------------------------------------------------------------------------- /src/Core/Events/ModifiedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Events/ModifiedEvent.cs -------------------------------------------------------------------------------- /src/Core/Exceptions/InvalidRevisionRangeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Exceptions/InvalidRevisionRangeRule.cs -------------------------------------------------------------------------------- /src/Core/Models/Extensions/FieldExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Models/Extensions/FieldExtensions.cs -------------------------------------------------------------------------------- /src/Core/Models/Extensions/FilteringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Models/Extensions/FilteringExtensions.cs -------------------------------------------------------------------------------- /src/Core/Models/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Models/Field.cs -------------------------------------------------------------------------------- /src/Core/Models/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Models/Filter.cs -------------------------------------------------------------------------------- /src/Core/Models/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Models/Page.cs -------------------------------------------------------------------------------- /src/Core/Serialization/FieldConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/Serialization/FieldConverter.cs -------------------------------------------------------------------------------- /src/Core/_Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Core/_Imports.cs -------------------------------------------------------------------------------- /src/Infrastructure/Common/MediatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Common/MediatorExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/ApplicationDbContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/ApplicationDbContextSeed.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Configurations/AppConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Configurations/AppConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Configurations/CertificateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Configurations/CertificateConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Configurations/ChannelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Configurations/ChannelConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Configurations/EnvironmentVariableConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Configurations/EnvironmentVariableConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Configurations/RevisionComponentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Configurations/RevisionComponentConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Configurations/RevisionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Configurations/RevisionConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Interceptors/AuditableEntitySaveChangesInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Interceptors/AuditableEntitySaveChangesInterceptor.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220203223719_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220203223719_Initial.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220203223719_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220203223719_Initial.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220509110744_AddRevisionComponents.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220509110744_AddRevisionComponents.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220509110744_AddRevisionComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220509110744_AddRevisionComponents.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220510121750_RemoveRevisionBaseAndType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220510121750_RemoveRevisionBaseAndType.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220510121750_RemoveRevisionBaseAndType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220510121750_RemoveRevisionBaseAndType.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220510134138_AppNameAndStorageShouldNotBeNullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220510134138_AppNameAndStorageShouldNotBeNullable.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220510134138_AppNameAndStorageShouldNotBeNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220510134138_AppNameAndStorageShouldNotBeNullable.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220510134947_ChannelNameShouldNotBeNullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220510134947_ChannelNameShouldNotBeNullable.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220510134947_ChannelNameShouldNotBeNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220510134947_ChannelNameShouldNotBeNullable.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220526124417_AddRedisComponentElements.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220526124417_AddRedisComponentElements.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220526124417_AddRedisComponentElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220526124417_AddRedisComponentElements.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220620132406_AddChannelLastPublishAt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220620132406_AddChannelLastPublishAt.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220620132406_AddChannelLastPublishAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220620132406_AddChannelLastPublishAt.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220808121551_AddChannelDesiredStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220808121551_AddChannelDesiredStatus.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/20220808121551_AddChannelDesiredStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/20220808121551_AddChannelDesiredStatus.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Postgresql/PostgresqlDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Postgresql/PostgresqlDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20211214002400_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20211214002400_Initial.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20211214002400_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20211214002400_Initial.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20211216231709_AddFieldConstraints.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20211216231709_AddFieldConstraints.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20211216231709_AddFieldConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20211216231709_AddFieldConstraints.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220118175137_AddCertificates.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220118175137_AddCertificates.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220118175137_AddCertificates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220118175137_AddCertificates.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220509110244_AddRevisionComponents.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220509110244_AddRevisionComponents.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220509110244_AddRevisionComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220509110244_AddRevisionComponents.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220510123344_RemoveRevisionBaseAndType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220510123344_RemoveRevisionBaseAndType.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220510123344_RemoveRevisionBaseAndType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220510123344_RemoveRevisionBaseAndType.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220510134157_AppNameAndStorageShouldNotBeNullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220510134157_AppNameAndStorageShouldNotBeNullable.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220510134157_AppNameAndStorageShouldNotBeNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220510134157_AppNameAndStorageShouldNotBeNullable.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220510135000_ChannelNameShouldNotBeNullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220510135000_ChannelNameShouldNotBeNullable.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220510135000_ChannelNameShouldNotBeNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220510135000_ChannelNameShouldNotBeNullable.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220526125320_AddRedisComponentElements.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220526125320_AddRedisComponentElements.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220526125320_AddRedisComponentElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220526125320_AddRedisComponentElements.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220620132457_AddChannelLastPublishAt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220620132457_AddChannelLastPublishAt.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220620132457_AddChannelLastPublishAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220620132457_AddChannelLastPublishAt.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220808121640_AddChannelDesiredStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220808121640_AddChannelDesiredStatus.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/20220808121640_AddChannelDesiredStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/20220808121640_AddChannelDesiredStatus.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/Migrations/Sqlite/SqliteDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/Migrations/Sqlite/SqliteDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/PostgresqlDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/PostgresqlDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/Data/SqliteDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Data/SqliteDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/DependencyInjection.cs -------------------------------------------------------------------------------- /src/Infrastructure/Exceptions/InvalidDatabaseDriverException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Exceptions/InvalidDatabaseDriverException.cs -------------------------------------------------------------------------------- /src/Infrastructure/Files/JsonFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Files/JsonFileBuilder.cs -------------------------------------------------------------------------------- /src/Infrastructure/HealthChecks/BindleHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/HealthChecks/BindleHealthCheck.cs -------------------------------------------------------------------------------- /src/Infrastructure/HealthChecks/NomadHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/HealthChecks/NomadHealthCheck.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Identity/Account.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/IdentityResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Identity/IdentityResultExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Identity/IdentityService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/SignInResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Identity/SignInResultExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Identity/SignInService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Identity/SignInService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Jobs/NomadJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Jobs/NomadJob.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/BindleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Services/BindleService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/DateTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Services/DateTimeService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/NomadJobService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Services/NomadJobService.cs -------------------------------------------------------------------------------- /src/Infrastructure/Services/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Infrastructure/Services/TokenService.cs -------------------------------------------------------------------------------- /src/Web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/.vscode/launch.json -------------------------------------------------------------------------------- /src/Web/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/.vscode/tasks.json -------------------------------------------------------------------------------- /src/Web/Api/AccountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/AccountsController.cs -------------------------------------------------------------------------------- /src/Web/Api/ApiControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/ApiControllerBase.cs -------------------------------------------------------------------------------- /src/Web/Api/AppsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/AppsController.cs -------------------------------------------------------------------------------- /src/Web/Api/AuthTokensController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/AuthTokensController.cs -------------------------------------------------------------------------------- /src/Web/Api/CertificatesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/CertificatesController.cs -------------------------------------------------------------------------------- /src/Web/Api/ChannelStatusesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/ChannelStatusesController.cs -------------------------------------------------------------------------------- /src/Web/Api/ChannelsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/ChannelsController.cs -------------------------------------------------------------------------------- /src/Web/Api/RevisionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/RevisionsController.cs -------------------------------------------------------------------------------- /src/Web/Api/StoragesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Api/StoragesController.cs -------------------------------------------------------------------------------- /src/Web/ClientApp/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.browserslistrc -------------------------------------------------------------------------------- /src/Web/ClientApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.editorconfig -------------------------------------------------------------------------------- /src/Web/ClientApp/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.eslintignore -------------------------------------------------------------------------------- /src/Web/ClientApp/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.eslintrc.json -------------------------------------------------------------------------------- /src/Web/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.gitignore -------------------------------------------------------------------------------- /src/Web/ClientApp/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.prettierrc.json -------------------------------------------------------------------------------- /src/Web/ClientApp/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.vscode/extensions.json -------------------------------------------------------------------------------- /src/Web/ClientApp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.vscode/launch.json -------------------------------------------------------------------------------- /src/Web/ClientApp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/.vscode/tasks.json -------------------------------------------------------------------------------- /src/Web/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/README.md -------------------------------------------------------------------------------- /src/Web/ClientApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/angular.json -------------------------------------------------------------------------------- /src/Web/ClientApp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/karma.conf.js -------------------------------------------------------------------------------- /src/Web/ClientApp/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/openapitools.json -------------------------------------------------------------------------------- /src/Web/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/package-lock.json -------------------------------------------------------------------------------- /src/Web/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/package.json -------------------------------------------------------------------------------- /src/Web/ClientApp/proxy.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/proxy.conf.js -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_helpers/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_helpers/auth.guard.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_helpers/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_helpers/auth.guard.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_helpers/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_helpers/auth.interceptor.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_helpers/constants.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_helpers/must-match.validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_helpers/must-match.validator.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_helpers/token.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_helpers/token.interceptor.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_helpers/token.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_helpers/token.interceptor.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_interfaces/app-config.ts: -------------------------------------------------------------------------------- 1 | export interface AppConfig { 2 | title?: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_services/app-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_services/app-config.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_services/session.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_services/session.service.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/_services/session.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/_services/session.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/app.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/app.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/app.module.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/account/login/login.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/account/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/account/login/login.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/register/register.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/account/register/register.component.css -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/account/register/register.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/account/register/register.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/account/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/account/register/register.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/list/list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/list/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/list/list.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/list/list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/list/list.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/list/list.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/new/new.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/new/new.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/new/new.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/new/new.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/new/new.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/new/new.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/new/new.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/settings/settings.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/settings/settings.component.css -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/settings/settings.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/settings/settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/settings/settings.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/application/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/application/settings/settings.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/channel.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/channel.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/channel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/channel.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/channel.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/logs/logs.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/logs/logs.component.css -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/logs/logs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/logs/logs.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/logs/logs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/logs/logs.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/logs/logs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/logs/logs.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/new/new.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/new/new.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/new/new.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/new/new.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/new/new.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/new/new.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/new/new.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/overview/overview.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/overview/overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/overview/overview.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/overview/overview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/overview/overview.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/channel/overview/overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/channel/overview/overview.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/environment-variable/list/list.component.css: -------------------------------------------------------------------------------- 1 | .env-save-button { 2 | max-width: 130px; 3 | } -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/environment-variable/list/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/environment-variable/list/list.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/environment-variable/list/list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/environment-variable/list/list.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/environment-variable/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/environment-variable/list/list.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/health-check/health-check.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/health-check/health-check.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/health-check/health-check.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/health-check/health-check.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/health-check/health-check.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/health-check/health-check.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/health-check/health-check.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/success/success.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/helpers/success/success.component.css -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/success/success.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/helpers/success/success.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/success/success.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/helpers/success/success.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/success/success.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/helpers/success/success.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/warning/warning.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/warning/warning.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/helpers/warning/warning.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/warning/warning.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/helpers/warning/warning.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/helpers/warning/warning.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/helpers/warning/warning.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/navbar/navbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/navbar/navbar.component.css -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/not-found/not-found.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/not-found/not-found.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/not-found/not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/not-found/not-found.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/not-found/not-found.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/styleguide/styleguide.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/styleguide/styleguide.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/styleguide/styleguide.component.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/styleguide/styleguide.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/styleguide/styleguide.component.spec.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/components/styleguide/styleguide.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/components/styleguide/styleguide.component.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/.openapi-generator-ignore -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/.openapi-generator/FILES -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.0 -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/README.md -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api.module.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/account.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/accounts.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/accounts.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/api.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/app.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/apps.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/apps.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/authTokens.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/authTokens.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/certificate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/certificate.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/certificates.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/certificates.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/channel.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/channel.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/channelStatuses.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/channelStatuses.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/channels.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/channels.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/jobStatus.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/jobStatus.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/revision.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/revision.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/revisions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/revisions.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/storage.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/api/storages.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/api/storages.service.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/configuration.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/encoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/encoder.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/git_push.sh -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/index.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/app.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/appChannelListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/appChannelListItem.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/appItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/appItem.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/appItemPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/appItemPage.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/appSummaryDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/appSummaryDto.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/certificate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/certificate.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/certificateItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/certificateItem.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/certificateItemPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/certificateItemPage.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channel.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channelItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channelItem.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channelItemPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channelItemPage.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channelJobStatusItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channelJobStatusItem.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channelJobStatusItemPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channelJobStatusItemPage.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channelRevisionSelectionStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channelRevisionSelectionStrategy.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channelRevisionSelectionStrategyField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channelRevisionSelectionStrategyField.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/channelStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/channelStatus.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/createAccountCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/createAccountCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/createAppCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/createAppCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/createCertificateCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/createCertificateCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/createChannelCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/createChannelCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/createEnvironmentVariableCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/createEnvironmentVariableCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/createTokenCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/createTokenCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/desiredStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/desiredStatus.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/domainEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/domainEvent.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/environmentVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/environmentVariable.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/environmentVariableDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/environmentVariableDto.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/environmentVariableItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/environmentVariableItem.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/environmentVariablesVm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/environmentVariablesVm.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/getChannelLogsVm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/getChannelLogsVm.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/guidNullableField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/guidNullableField.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/jobStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/jobStatus.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/models.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/patchChannelCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/patchChannelCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/registerRevisionCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/registerRevisionCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revision.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionComponent.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionComponentDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionComponentDto.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionComponentTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionComponentTrigger.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionDetails.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionDetailsDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionDetailsDto.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionDetailsVm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionDetailsVm.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionItem.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionItemPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionItemPage.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionSpinToml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionSpinToml.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/revisionTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/revisionTrigger.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/stringField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/stringField.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/stringPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/stringPage.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/tokenInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/tokenInfo.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateAppCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateAppCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateCertificateCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateCertificateCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateChannelCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateChannelCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateDesiredStatusCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateDesiredStatusCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariableCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariableCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariableDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariableDto.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariableDtoListField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariableDtoListField.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariablesCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/model/updateEnvironmentVariablesCommand.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/app/core/api/v1/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/app/core/api/v1/variables.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/assets/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hippo" 3 | } 4 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /src/Web/ClientApp/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/environments/environment.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/index.html -------------------------------------------------------------------------------- /src/Web/ClientApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/main.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/polyfills.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/styles.scss -------------------------------------------------------------------------------- /src/Web/ClientApp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/src/test.ts -------------------------------------------------------------------------------- /src/Web/ClientApp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/tsconfig.app.json -------------------------------------------------------------------------------- /src/Web/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /src/Web/ClientApp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/ClientApp/tsconfig.spec.json -------------------------------------------------------------------------------- /src/Web/Extensions/HealthCheckExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Extensions/HealthCheckExtensions.cs -------------------------------------------------------------------------------- /src/Web/Extensions/HealthInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Extensions/HealthInfo.cs -------------------------------------------------------------------------------- /src/Web/Filters/ApiExceptionFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Filters/ApiExceptionFilterAttribute.cs -------------------------------------------------------------------------------- /src/Web/Helpers/ApiControllerNameConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Helpers/ApiControllerNameConvention.cs -------------------------------------------------------------------------------- /src/Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Program.cs -------------------------------------------------------------------------------- /src/Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/Services/CurrentUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Services/CurrentUserService.cs -------------------------------------------------------------------------------- /src/Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/Web.csproj -------------------------------------------------------------------------------- /src/Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/appsettings.Development.json -------------------------------------------------------------------------------- /src/Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/appsettings.json -------------------------------------------------------------------------------- /src/Web/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/nuget.config -------------------------------------------------------------------------------- /src/Web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/src/Web/package-lock.json -------------------------------------------------------------------------------- /tests/Application.UnitTests/Application.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Application.UnitTests/Application.UnitTests.csproj -------------------------------------------------------------------------------- /tests/Application.UnitTests/Common/Behaviours/RequestLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Application.UnitTests/Common/Behaviours/RequestLoggerTests.cs -------------------------------------------------------------------------------- /tests/Application.UnitTests/Common/Exceptions/ValidationExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Application.UnitTests/Common/Exceptions/ValidationExceptionTests.cs -------------------------------------------------------------------------------- /tests/Application.UnitTests/Common/Mappings/MappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Application.UnitTests/Common/Mappings/MappingTests.cs -------------------------------------------------------------------------------- /tests/Application.UnitTests/Revisions/Queries/RevisionItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Application.UnitTests/Revisions/Queries/RevisionItemTests.cs -------------------------------------------------------------------------------- /tests/Core.UnitTests/Common/AuditableEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Core.UnitTests/Common/AuditableEntityTests.cs -------------------------------------------------------------------------------- /tests/Core.UnitTests/Core.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Core.UnitTests/Core.UnitTests.csproj -------------------------------------------------------------------------------- /tests/Core.UnitTests/Enums/ChannelRevisionSelectionStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Core.UnitTests/Enums/ChannelRevisionSelectionStrategyTests.cs -------------------------------------------------------------------------------- /tests/Core.UnitTests/Enums/RegistrationModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Core.UnitTests/Enums/RegistrationModeTests.cs -------------------------------------------------------------------------------- /tests/Core.UnitTests/Events/EventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Core.UnitTests/Events/EventTests.cs -------------------------------------------------------------------------------- /tests/Core.UnitTests/Exceptions/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Core.UnitTests/Exceptions/ExceptionTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Application/Accounts/Commands/CreateAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Application/Accounts/Commands/CreateAccountTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Application/Accounts/Commands/CreateTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Application/Accounts/Commands/CreateTokenTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Application/Apps/Commands/CreateAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Application/Apps/Commands/CreateAppTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Application/Certificates/Commands/CreateCertificateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Application/Certificates/Commands/CreateCertificateTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Application/Channels/Commands/CreateChannelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Application/Channels/Commands/CreateChannelTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Application/Channels/Commands/UpdateChannelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Application/Channels/Commands/UpdateChannelTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Application/Revisions/Commands/CreateRevisionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Application/Revisions/Commands/CreateRevisionTests.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/FakeStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/FakeStorageService.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/Hippo.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/Hippo.FunctionalTests.csproj -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/TestBase.cs -------------------------------------------------------------------------------- /tests/Hippo.FunctionalTests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Hippo.FunctionalTests/appsettings.json -------------------------------------------------------------------------------- /tests/Infrastructure.UnitTests/Infrastructure.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Infrastructure.UnitTests/Infrastructure.UnitTests.csproj -------------------------------------------------------------------------------- /tests/Infrastructure.UnitTests/Services/BindleServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/hippo/HEAD/tests/Infrastructure.UnitTests/Services/BindleServiceTests.cs --------------------------------------------------------------------------------