├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report_en.md │ ├── bug_report_zh.md │ ├── feature_request_en.md │ └── feature_request_zh.md ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── workflows │ ├── build.yml │ ├── cla.yml │ ├── code-style-check.yml │ ├── codeql.yml │ ├── commit_lint.yml │ ├── docker-publish.yml │ └── license.yml ├── .gitignore ├── .licenserc.yaml ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── CHANGES.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── apollo-adminservice ├── pom.xml └── src │ ├── assembly │ └── assembly-descriptor.xml │ ├── main │ ├── docker │ │ └── Dockerfile │ ├── java │ │ └── com │ │ │ └── ctrip │ │ │ └── framework │ │ │ └── apollo │ │ │ └── adminservice │ │ │ ├── AdminServiceApplication.java │ │ │ ├── AdminServiceAssemblyConfiguration.java │ │ │ ├── AdminServiceAutoConfiguration.java │ │ │ ├── AdminServiceHealthIndicator.java │ │ │ ├── ServletInitializer.java │ │ │ ├── aop │ │ │ ├── NamespaceAcquireLockAspect.java │ │ │ ├── NamespaceUnlockAspect.java │ │ │ └── PreAcquireNamespaceLock.java │ │ │ ├── controller │ │ │ ├── AccessKeyController.java │ │ │ ├── AppController.java │ │ │ ├── AppNamespaceController.java │ │ │ ├── ClusterController.java │ │ │ ├── CommitController.java │ │ │ ├── IndexController.java │ │ │ ├── InstanceConfigController.java │ │ │ ├── ItemController.java │ │ │ ├── ItemSetController.java │ │ │ ├── NamespaceBranchController.java │ │ │ ├── NamespaceController.java │ │ │ ├── NamespaceLockController.java │ │ │ ├── ReleaseController.java │ │ │ ├── ReleaseHistoryController.java │ │ │ └── ServerConfigController.java │ │ │ └── filter │ │ │ └── AdminServiceAuthenticationFilter.java │ ├── resources │ │ ├── adminservice.properties │ │ ├── apollo-adminservice.conf │ │ ├── application-consul-discovery.properties │ │ ├── application-custom-defined-discovery.properties │ │ ├── application-database-discovery.properties │ │ ├── application-github.properties │ │ ├── application-kubernetes.properties │ │ ├── application-nacos-discovery.properties │ │ ├── application-zookeeper-discovery.properties │ │ ├── application.properties │ │ ├── application.yml │ │ └── logback.xml │ └── scripts │ │ ├── shutdown.sh │ │ └── startup.sh │ └── test │ ├── java │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ ├── AdminServiceTestConfiguration.java │ │ ├── LocalAdminServiceApplication.java │ │ └── adminservice │ │ ├── aop │ │ ├── NamespaceLockTest.java │ │ └── NamespaceUnlockAspectTest.java │ │ ├── controller │ │ ├── AbstractControllerTest.java │ │ ├── AppControllerTest.java │ │ ├── AppNamespaceControllerTest.java │ │ ├── ClusterControllerTest.java │ │ ├── ControllerExceptionTest.java │ │ ├── ControllerIntegrationExceptionTest.java │ │ ├── InstanceConfigControllerTest.java │ │ ├── ItemControllerTest.java │ │ ├── ItemSetControllerTest.java │ │ ├── NamespaceControllerTest.java │ │ ├── ReleaseControllerTest.java │ │ ├── ServerConfigControllerTest.java │ │ └── TestWebSecurityConfig.java │ │ └── filter │ │ ├── AdminServiceAuthenticationFilterTest.java │ │ └── AdminServiceAuthenticationIntegrationTest.java │ └── resources │ ├── application.properties │ ├── application.yml │ ├── controller │ ├── cleanup.sql │ ├── test-itemset.sql │ ├── test-release.sql │ └── test-server-config.sql │ ├── data.sql │ ├── filter │ ├── test-access-control-disabled.sql │ ├── test-access-control-enabled-no-token.sql │ └── test-access-control-enabled.sql │ ├── import.sql │ └── logback-test.xml ├── apollo-assembly ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── ctrip │ │ │ └── framework │ │ │ └── apollo │ │ │ └── assembly │ │ │ └── ApolloApplication.java │ └── resources │ │ ├── application-database-discovery.properties │ │ ├── application-github.properties │ │ ├── application.properties │ │ ├── application.yml │ │ └── logback.xml │ └── test │ ├── java │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── assembly │ │ └── LocalApolloApplication.java │ └── resources │ ├── application.properties │ ├── application.yml │ └── logback-test.xml ├── apollo-audit ├── README.md ├── apollo-audit-annotation │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── audit │ │ └── annotation │ │ ├── ApolloAuditLog.java │ │ ├── ApolloAuditLogDataInfluence.java │ │ ├── ApolloAuditLogDataInfluenceTable.java │ │ ├── ApolloAuditLogDataInfluenceTableField.java │ │ └── OpType.java ├── apollo-audit-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── audit │ │ ├── api │ │ ├── ApolloAuditLogApi.java │ │ ├── ApolloAuditLogQueryApi.java │ │ └── ApolloAuditLogRecordApi.java │ │ ├── dto │ │ ├── ApolloAuditLogDTO.java │ │ ├── ApolloAuditLogDataInfluenceDTO.java │ │ └── ApolloAuditLogDetailsDTO.java │ │ └── event │ │ └── ApolloAuditLogDataInfluenceEvent.java ├── apollo-audit-impl │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── ctrip │ │ │ └── framework │ │ │ └── apollo │ │ │ └── audit │ │ │ ├── ApolloAuditProperties.java │ │ │ ├── ApolloAuditRegistrar.java │ │ │ ├── aop │ │ │ └── ApolloAuditSpanAspect.java │ │ │ ├── component │ │ │ ├── ApolloAuditHttpInterceptor.java │ │ │ ├── ApolloAuditLogApiJpaImpl.java │ │ │ └── ApolloAuditLogApiNoOpImpl.java │ │ │ ├── constants │ │ │ └── ApolloAuditConstants.java │ │ │ ├── context │ │ │ ├── ApolloAuditScope.java │ │ │ ├── ApolloAuditScopeManager.java │ │ │ ├── ApolloAuditSpan.java │ │ │ ├── ApolloAuditSpanContext.java │ │ │ ├── ApolloAuditTraceContext.java │ │ │ └── ApolloAuditTracer.java │ │ │ ├── controller │ │ │ └── ApolloAuditController.java │ │ │ ├── entity │ │ │ ├── ApolloAuditLog.java │ │ │ ├── ApolloAuditLogDataInfluence.java │ │ │ └── BaseEntity.java │ │ │ ├── listener │ │ │ └── ApolloAuditLogDataInfluenceEventListener.java │ │ │ ├── repository │ │ │ ├── ApolloAuditLogDataInfluenceRepository.java │ │ │ └── ApolloAuditLogRepository.java │ │ │ ├── service │ │ │ ├── ApolloAuditLogDataInfluenceService.java │ │ │ └── ApolloAuditLogService.java │ │ │ ├── spi │ │ │ ├── ApolloAuditLogQueryApiPreAuthorizer.java │ │ │ ├── ApolloAuditOperatorSupplier.java │ │ │ └── defaultimpl │ │ │ │ ├── ApolloAuditLogQueryApiDefaultPreAuthorizer.java │ │ │ │ └── ApolloAuditOperatorDefaultSupplier.java │ │ │ └── util │ │ │ └── ApolloAuditUtil.java │ │ └── test │ │ └── java │ │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── audit │ │ ├── MockBeanFactory.java │ │ ├── MockDataInfluenceEntity.java │ │ ├── aop │ │ └── ApolloAuditSpanAspectTest.java │ │ ├── component │ │ ├── ApolloAuditHttpInterceptorTest.java │ │ ├── ApolloAuditLogApiJpaImplTest.java │ │ └── ApolloAuditScopeManagerTest.java │ │ ├── context │ │ ├── ApolloAuditTraceContextTest.java │ │ └── ApolloAuditTracerTest.java │ │ ├── controller │ │ └── ApolloAuditControllerTest.java │ │ └── spi │ │ └── ApolloAuditOperatorSupplierTest.java ├── apollo-audit-spring-boot-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ctrip │ │ │ └── framework │ │ │ └── apollo │ │ │ └── audit │ │ │ └── configuration │ │ │ ├── ApolloAuditAutoConfiguration.java │ │ │ └── ApolloAuditNoOpAutoConfiguration.java │ │ └── resources │ │ └── META-INF │ │ └── spring.factories └── pom.xml ├── apollo-biz ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── biz │ │ ├── ApolloBizAssemblyConfiguration.java │ │ ├── ApolloBizConfig.java │ │ ├── auth │ │ └── WebSecurityConfig.java │ │ ├── config │ │ └── BizConfig.java │ │ ├── entity │ │ ├── AccessKey.java │ │ ├── Audit.java │ │ ├── Cluster.java │ │ ├── Commit.java │ │ ├── GrayReleaseRule.java │ │ ├── Instance.java │ │ ├── InstanceConfig.java │ │ ├── Item.java │ │ ├── JpaMapFieldJsonConverter.java │ │ ├── Namespace.java │ │ ├── NamespaceLock.java │ │ ├── Privilege.java │ │ ├── Release.java │ │ ├── ReleaseHistory.java │ │ ├── ReleaseMessage.java │ │ ├── ServerConfig.java │ │ └── ServiceRegistry.java │ │ ├── eureka │ │ └── ApolloEurekaClientConfig.java │ │ ├── grayReleaseRule │ │ ├── GrayReleaseRuleCache.java │ │ └── GrayReleaseRulesHolder.java │ │ ├── message │ │ ├── DatabaseMessageSender.java │ │ ├── MessageSender.java │ │ ├── ReleaseMessageListener.java │ │ ├── ReleaseMessageScanner.java │ │ └── Topics.java │ │ ├── registry │ │ ├── DatabaseDiscoveryClient.java │ │ ├── DatabaseDiscoveryClientAlwaysAddSelfInstanceDecoratorImpl.java │ │ ├── DatabaseDiscoveryClientImpl.java │ │ ├── DatabaseDiscoveryClientMemoryCacheDecoratorImpl.java │ │ ├── DatabaseServiceRegistry.java │ │ ├── DatabaseServiceRegistryImpl.java │ │ ├── ServiceInstance.java │ │ ├── configuration │ │ │ ├── ApolloServiceDiscoveryAutoConfiguration.java │ │ │ ├── ApolloServiceRegistryAutoConfiguration.java │ │ │ └── support │ │ │ │ ├── ApolloServiceDiscoveryProperties.java │ │ │ │ ├── ApolloServiceRegistryClearApplicationRunner.java │ │ │ │ ├── ApolloServiceRegistryDeregisterApplicationListener.java │ │ │ │ ├── ApolloServiceRegistryHeartbeatApplicationRunner.java │ │ │ │ └── ApolloServiceRegistryProperties.java │ │ └── package-info.java │ │ ├── repository │ │ ├── AccessKeyRepository.java │ │ ├── AppNamespaceRepository.java │ │ ├── AppRepository.java │ │ ├── AuditRepository.java │ │ ├── ClusterRepository.java │ │ ├── CommitRepository.java │ │ ├── GrayReleaseRuleRepository.java │ │ ├── InstanceConfigRepository.java │ │ ├── InstanceRepository.java │ │ ├── ItemRepository.java │ │ ├── NamespaceLockRepository.java │ │ ├── NamespaceRepository.java │ │ ├── PrivilegeRepository.java │ │ ├── ReleaseHistoryRepository.java │ │ ├── ReleaseMessageRepository.java │ │ ├── ReleaseRepository.java │ │ ├── ServerConfigRepository.java │ │ └── ServiceRegistryRepository.java │ │ ├── service │ │ ├── AccessKeyService.java │ │ ├── AdminService.java │ │ ├── AppNamespaceService.java │ │ ├── AppService.java │ │ ├── AuditService.java │ │ ├── BizDBPropertySource.java │ │ ├── ClusterService.java │ │ ├── CommitService.java │ │ ├── InstanceService.java │ │ ├── ItemService.java │ │ ├── ItemSetService.java │ │ ├── NamespaceBranchService.java │ │ ├── NamespaceLockService.java │ │ ├── NamespaceService.java │ │ ├── ReleaseHistoryService.java │ │ ├── ReleaseMessageService.java │ │ ├── ReleaseService.java │ │ ├── ServerConfigService.java │ │ └── ServiceRegistryService.java │ │ └── utils │ │ ├── ConfigChangeContentBuilder.java │ │ ├── EntityManagerUtil.java │ │ ├── ReleaseKeyGenerator.java │ │ └── ReleaseMessageKeyGenerator.java │ └── test │ ├── java │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── biz │ │ ├── AbstractIntegrationTest.java │ │ ├── AbstractUnitTest.java │ │ ├── BizTestConfiguration.java │ │ ├── MockBeanFactory.java │ │ ├── config │ │ └── BizConfigTest.java │ │ ├── entity │ │ └── JpaMapFieldJsonConverterTest.java │ │ ├── grayReleaseRule │ │ └── GrayReleaseRulesHolderTest.java │ │ ├── message │ │ ├── DatabaseMessageSenderTest.java │ │ └── ReleaseMessageScannerTest.java │ │ ├── registry │ │ ├── DatabaseDiscoveryClientAlwaysAddSelfInstanceDecoratorImplTest.java │ │ ├── DatabaseDiscoveryClientImplTest.java │ │ ├── DatabaseDiscoveryClientMemoryCacheDecoratorImplTest.java │ │ ├── DatabaseDiscoveryIntegrationTest.java │ │ ├── DatabaseDiscoveryWithoutDecoratorIntegrationTest.java │ │ ├── ServiceInstanceFactory.java │ │ └── configuration │ │ │ ├── ApolloServiceRegistryAutoConfigurationNotEnabledTest.java │ │ │ └── support │ │ │ └── ApolloServiceRegistryClearApplicationRunnerIntegrationTest.java │ │ ├── repository │ │ ├── AccessKeyRepositoryTest.java │ │ ├── AppNamespaceRepositoryTest.java │ │ ├── AppRepositoryTest.java │ │ ├── InstanceConfigRepositoryTest.java │ │ └── ReleaseHistoryRepositoryTest.java │ │ ├── service │ │ ├── AccessKeyServiceTest.java │ │ ├── AdminServiceTest.java │ │ ├── AdminServiceTransactionTest.java │ │ ├── BizDBPropertySourceTest.java │ │ ├── ClusterServiceTest.java │ │ ├── InstanceServiceTest.java │ │ ├── ItemServiceTest.java │ │ ├── ItemSetServiceTest.java │ │ ├── NamespaceBranchServiceTest.java │ │ ├── NamespacePublishInfoTest.java │ │ ├── NamespaceServiceIntegrationTest.java │ │ ├── NamespaceServiceTest.java │ │ ├── ReleaseCreationTest.java │ │ ├── ReleaseHistoryServiceTest.java │ │ ├── ReleaseServiceTest.java │ │ └── ServerConfigServiceTest.java │ │ └── utils │ │ ├── ConfigChangeContentBuilderTest.java │ │ └── ReleaseKeyGeneratorTest.java │ └── resources │ ├── application.properties │ ├── data.sql │ ├── import.sql │ ├── json │ └── converter │ │ ├── element.1.json │ │ └── element.2.json │ ├── logback-test.xml │ └── sql │ ├── accesskey-test.sql │ ├── clean.sql │ ├── item-test.sql │ ├── itemset-test.sql │ ├── namespace-branch-test.sql │ ├── namespace-test.sql │ ├── release-creation-test.sql │ └── release-history-test.sql ├── apollo-build-sql-converter ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── build │ │ └── sql │ │ └── converter │ │ ├── ApolloH2ConverterUtil.java │ │ ├── ApolloMysqlDefaultConverterUtil.java │ │ ├── ApolloSqlConverter.java │ │ ├── ApolloSqlConverterUtil.java │ │ ├── SqlStatement.java │ │ ├── SqlTemplate.java │ │ ├── SqlTemplateContext.java │ │ └── SqlTemplateGist.java │ └── test │ ├── java │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ └── build │ │ └── sql │ │ └── converter │ │ ├── ApolloSqlConverterAutoGeneratedTest.java │ │ ├── ApolloSqlConverterH2Test.java │ │ └── TestH2Function.java │ └── resources │ └── META-INF │ └── sql │ └── h2-test │ └── delta │ ├── v000-v010 │ ├── apolloconfigdb-v000-v010-after.sql │ ├── apolloconfigdb-v000-v010-base.sql │ ├── apolloconfigdb-v000-v010-before.sql │ ├── apolloconfigdb-v000-v010.sql │ ├── apolloportaldb-v000-v010-base.sql │ └── apolloportaldb-v000-v010.sql │ ├── v040-v050 │ ├── apolloconfigdb-v040-v050.sql │ └── apolloportaldb-v040-v050.sql │ ├── v060-v062 │ ├── apolloconfigdb-v060-v062.sql │ └── apolloportaldb-v060-v062.sql │ ├── v080-v090 │ └── apolloportaldb-v080-v090.sql │ ├── v151-v160 │ └── apolloconfigdb-v151-v160.sql │ ├── v170-v180 │ ├── apolloconfigdb-v170-v180.sql │ └── apolloportaldb-v170-v180.sql │ ├── v180-v190 │ ├── apolloconfigdb-v180-v190.sql │ └── apolloportaldb-v180-v190.sql │ ├── v190-v200 │ ├── apolloconfigdb-v190-v200-after.sql │ ├── apolloconfigdb-v190-v200.sql │ ├── apolloportaldb-v190-v200-after.sql │ └── apolloportaldb-v190-v200.sql │ ├── v200-v210 │ └── apolloconfigdb-v200-v210.sql │ └── v210-v220 │ ├── apolloconfigdb-v210-v220.sql │ └── apolloportaldb-v210-v220.sql ├── apollo-buildtools ├── .gitignore ├── pom.xml ├── src │ └── main │ │ ├── resources │ │ ├── LICENSE-2.0.txt │ │ └── google_checks.xml │ │ └── scripts │ │ └── deploy_jenkins.sh └── style │ ├── eclipse-java-google-style.xml │ ├── intellij-java-google-style.xml │ └── license │ └── apollo-license ├── apollo-common ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── ctrip │ │ │ └── framework │ │ │ └── apollo │ │ │ └── common │ │ │ ├── ApolloCommonConfig.java │ │ │ ├── aop │ │ │ └── RepositoryAspect.java │ │ │ ├── condition │ │ │ ├── ConditionalOnMissingProfile.java │ │ │ ├── ConditionalOnProfile.java │ │ │ └── OnProfileCondition.java │ │ │ ├── config │ │ │ ├── RefreshableConfig.java │ │ │ └── RefreshablePropertySource.java │ │ │ ├── constants │ │ │ ├── AccessKeyMode.java │ │ │ ├── ApolloServer.java │ │ │ ├── GsonType.java │ │ │ ├── NamespaceBranchStatus.java │ │ │ ├── ReleaseOperation.java │ │ │ └── ReleaseOperationContext.java │ │ │ ├── controller │ │ │ ├── ApolloInfoController.java │ │ │ ├── CharacterEncodingFilterConfiguration.java │ │ │ ├── GlobalDefaultExceptionHandler.java │ │ │ ├── HttpMessageConverterConfiguration.java │ │ │ └── WebMvcConfig.java │ │ │ ├── datasource │ │ │ ├── ApolloDataSourceScriptDatabaseInitializer.java │ │ │ ├── ApolloDataSourceScriptDatabaseInitializerFactory.java │ │ │ └── ApolloSqlInitializationProperties.java │ │ │ ├── dto │ │ │ ├── AccessKeyDTO.java │ │ │ ├── AppDTO.java │ │ │ ├── AppNamespaceDTO.java │ │ │ ├── BaseDTO.java │ │ │ ├── ClusterDTO.java │ │ │ ├── CommitDTO.java │ │ │ ├── GrayReleaseRuleDTO.java │ │ │ ├── GrayReleaseRuleItemDTO.java │ │ │ ├── InstanceConfigDTO.java │ │ │ ├── InstanceDTO.java │ │ │ ├── ItemChangeSets.java │ │ │ ├── ItemDTO.java │ │ │ ├── ItemInfoDTO.java │ │ │ ├── NamespaceDTO.java │ │ │ ├── NamespaceLockDTO.java │ │ │ ├── PageDTO.java │ │ │ ├── ReleaseDTO.java │ │ │ └── ReleaseHistoryDTO.java │ │ │ ├── entity │ │ │ ├── App.java │ │ │ ├── AppNamespace.java │ │ │ ├── BaseEntity.java │ │ │ └── EntityPair.java │ │ │ ├── exception │ │ │ ├── AbstractApolloHttpException.java │ │ │ ├── BadRequestException.java │ │ │ ├── BeanUtilsException.java │ │ │ ├── NotFoundException.java │ │ │ └── ServiceException.java │ │ │ ├── http │ │ │ ├── MultiResponseEntity.java │ │ │ ├── RichResponseEntity.java │ │ │ └── SearchResponseEntity.java │ │ │ ├── jpa │ │ │ ├── H2Function.java │ │ │ └── SqlFunctionsMetadataBuilderContributor.java │ │ │ └── utils │ │ │ ├── BeanUtils.java │ │ │ ├── ExceptionUtils.java │ │ │ ├── GrayReleaseRuleItemTransformer.java │ │ │ ├── InputValidator.java │ │ │ ├── RequestPrecondition.java │ │ │ ├── UniqueKeyGenerator.java │ │ │ └── WebUtils.java │ └── resources │ │ ├── application-h2.properties │ │ ├── application-mysql.properties │ │ ├── application-postgre.properties │ │ ├── application.yaml │ │ └── banner.txt │ └── test │ └── java │ └── com │ └── ctrip │ └── framework │ └── apollo │ └── common │ ├── conditional │ └── ConditionalOnProfileTest.java │ ├── dto │ └── ItemInfoDTOTest.java │ ├── exception │ ├── BadRequestExceptionTest.java │ └── NotFoundExceptionTest.java │ ├── http │ └── SearchResponseEntityTest.java │ └── utils │ ├── BeanUtilsTest.java │ ├── InputValidatorTest.java │ └── WebUtilsTest.java ├── apollo-configservice ├── pom.xml └── src │ ├── assembly │ └── assembly-descriptor.xml │ ├── main │ ├── docker │ │ └── Dockerfile │ ├── java │ │ └── com │ │ │ └── ctrip │ │ │ └── framework │ │ │ └── apollo │ │ │ ├── configservice │ │ │ ├── ConfigServerEurekaServerConfigure.java │ │ │ ├── ConfigServiceApplication.java │ │ │ ├── ConfigServiceAssemblyConfiguration.java │ │ │ ├── ConfigServiceAutoConfiguration.java │ │ │ ├── ConfigServiceHealthIndicator.java │ │ │ ├── ServletInitializer.java │ │ │ ├── controller │ │ │ │ ├── ConfigController.java │ │ │ │ ├── ConfigFileController.java │ │ │ │ ├── NotificationController.java │ │ │ │ └── NotificationControllerV2.java │ │ │ ├── filter │ │ │ │ └── ClientAuthenticationFilter.java │ │ │ ├── service │ │ │ │ ├── AccessKeyServiceWithCache.java │ │ │ │ ├── AppNamespaceServiceWithCache.java │ │ │ │ ├── ReleaseMessageServiceWithCache.java │ │ │ │ └── config │ │ │ │ │ ├── AbstractConfigService.java │ │ │ │ │ ├── ConfigService.java │ │ │ │ │ ├── ConfigServiceWithCache.java │ │ │ │ │ ├── DefaultConfigService.java │ │ │ │ │ ├── DefaultIncrementalSyncService.java │ │ │ │ │ └── IncrementalSyncService.java │ │ │ ├── util │ │ │ │ ├── AccessKeyUtil.java │ │ │ │ ├── InstanceConfigAuditUtil.java │ │ │ │ ├── NamespaceUtil.java │ │ │ │ └── WatchKeysUtil.java │ │ │ └── wrapper │ │ │ │ ├── CaseInsensitiveMapWrapper.java │ │ │ │ └── DeferredResultWrapper.java │ │ │ └── metaservice │ │ │ ├── ApolloMetaServiceConfig.java │ │ │ ├── controller │ │ │ ├── HomePageController.java │ │ │ └── ServiceController.java │ │ │ └── service │ │ │ ├── DatabaseDiscoveryService.java │ │ │ ├── DefaultDiscoveryService.java │ │ │ ├── DiscoveryService.java │ │ │ ├── KubernetesDiscoveryService.java │ │ │ ├── NacosDiscoveryService.java │ │ │ └── SpringCloudInnerDiscoveryService.java │ ├── resources │ │ ├── apollo-configservice.conf │ │ ├── application-consul-discovery.properties │ │ ├── application-custom-defined-discovery.properties │ │ ├── application-database-discovery.properties │ │ ├── application-github.properties │ │ ├── application-kubernetes.properties │ │ ├── application-nacos-discovery.properties │ │ ├── application-zookeeper-discovery.properties │ │ ├── application.properties │ │ ├── application.yml │ │ ├── configservice.properties │ │ ├── jpa │ │ │ └── configdb.init.h2.sql │ │ └── logback.xml │ └── scripts │ │ ├── shutdown.sh │ │ └── startup.sh │ └── test │ ├── java │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ ├── ConfigServiceTestConfiguration.java │ │ ├── LocalConfigServiceApplication.java │ │ ├── configservice │ │ ├── controller │ │ │ ├── ConfigControllerTest.java │ │ │ ├── ConfigFileControllerTest.java │ │ │ ├── NotificationControllerTest.java │ │ │ ├── NotificationControllerV2Test.java │ │ │ └── TestWebSecurityConfig.java │ │ ├── filter │ │ │ └── ClientAuthenticationFilterTest.java │ │ ├── integration │ │ │ ├── AbstractBaseIntegrationTest.java │ │ │ ├── ConfigControllerIntegrationTest.java │ │ │ ├── ConfigFileControllerIntegrationTest.java │ │ │ ├── NotificationControllerIntegrationTest.java │ │ │ └── NotificationControllerV2IntegrationTest.java │ │ ├── service │ │ │ ├── AccessKeyServiceWithCacheTest.java │ │ │ ├── AppNamespaceServiceWithCacheTest.java │ │ │ ├── ReleaseMessageServiceWithCacheTest.java │ │ │ └── config │ │ │ │ ├── ConfigServiceWithCacheAndCacheKeyIgnoreCaseTest.java │ │ │ │ ├── ConfigServiceWithCacheTest.java │ │ │ │ ├── DefaultConfigServiceTest.java │ │ │ │ └── DefaultIncrementalSyncServiceTest.java │ │ ├── util │ │ │ ├── AccessKeyUtilTest.java │ │ │ ├── InstanceConfigAuditUtilTest.java │ │ │ ├── NamespaceUtilTest.java │ │ │ └── WatchKeysUtilTest.java │ │ └── wrapper │ │ │ └── CaseInsensitiveMapWrapperTest.java │ │ └── metaservice │ │ ├── controller │ │ ├── HomePageControllerTest.java │ │ └── ServiceControllerTest.java │ │ └── service │ │ ├── ConsulDiscoveryServiceTest.java │ │ ├── DefaultDiscoveryServiceTest.java │ │ ├── KubernetesDiscoveryServiceTest.java │ │ ├── NacosDiscoveryServiceTest.java │ │ └── ZookeeperDiscoveryServiceTest.java │ └── resources │ ├── application.properties │ ├── application.yml │ ├── data.sql │ ├── import.sql │ ├── integration-test │ ├── cleanup.sql │ ├── test-gray-release.sql │ ├── test-release-message.sql │ ├── test-release-public-dc-override.sql │ ├── test-release-public-default-override.sql │ └── test-release.sql │ └── logback-test.xml ├── apollo-portal ├── pom.xml └── src │ ├── assembly │ └── assembly-descriptor.xml │ ├── main │ ├── docker │ │ └── Dockerfile │ ├── java │ │ └── com │ │ │ └── ctrip │ │ │ └── framework │ │ │ └── apollo │ │ │ ├── openapi │ │ │ ├── PortalOpenApiConfig.java │ │ │ ├── auth │ │ │ │ └── ConsumerPermissionValidator.java │ │ │ ├── entity │ │ │ │ ├── Consumer.java │ │ │ │ ├── ConsumerAudit.java │ │ │ │ ├── ConsumerRole.java │ │ │ │ └── ConsumerToken.java │ │ │ ├── filter │ │ │ │ └── ConsumerAuthenticationFilter.java │ │ │ ├── repository │ │ │ │ ├── ConsumerAuditRepository.java │ │ │ │ ├── ConsumerRepository.java │ │ │ │ ├── ConsumerRoleRepository.java │ │ │ │ └── ConsumerTokenRepository.java │ │ │ ├── server │ │ │ │ └── service │ │ │ │ │ ├── AppOpenApiService.java │ │ │ │ │ ├── ClusterOpenApiService.java │ │ │ │ │ ├── EnvOpenApiService.java │ │ │ │ │ ├── OrganizationOpenApiService.java │ │ │ │ │ ├── ServerAppOpenApiService.java │ │ │ │ │ ├── ServerClusterOpenApiService.java │ │ │ │ │ ├── ServerEnvOpenApiService.java │ │ │ │ │ ├── ServerInstanceOpenApiService.java │ │ │ │ │ ├── ServerItemOpenApiService.java │ │ │ │ │ ├── ServerNamespaceOpenApiService.java │ │ │ │ │ ├── ServerOrganizationOpenApiService.java │ │ │ │ │ └── ServerReleaseOpenApiService.java │ │ │ ├── service │ │ │ │ ├── ConsumerRolePermissionService.java │ │ │ │ └── ConsumerService.java │ │ │ ├── util │ │ │ │ ├── ConsumerAuditUtil.java │ │ │ │ ├── ConsumerAuthUtil.java │ │ │ │ ├── OpenApiBeanUtils.java │ │ │ │ └── OpenApiModelConverters.java │ │ │ └── v1 │ │ │ │ └── controller │ │ │ │ ├── AppController.java │ │ │ │ ├── ClusterController.java │ │ │ │ ├── EnvController.java │ │ │ │ ├── InstanceController.java │ │ │ │ ├── ItemController.java │ │ │ │ ├── NamespaceBranchController.java │ │ │ │ ├── NamespaceController.java │ │ │ │ ├── OrganizationController.java │ │ │ │ └── ReleaseController.java │ │ │ └── portal │ │ │ ├── PortalApplication.java │ │ │ ├── PortalAssemblyConfiguration.java │ │ │ ├── ServletInitializer.java │ │ │ ├── api │ │ │ ├── API.java │ │ │ └── AdminServiceAPI.java │ │ │ ├── audit │ │ │ ├── ApolloAuditLogQueryApiPortalPreAuthorizer.java │ │ │ └── ApolloAuditOperatorPortalSupplier.java │ │ │ ├── component │ │ │ ├── AbstractPermissionValidator.java │ │ │ ├── AdminServiceAddressLocator.java │ │ │ ├── ConfigReleaseWebhookNotifier.java │ │ │ ├── ItemsComparator.java │ │ │ ├── PermissionValidator.java │ │ │ ├── PortalSettings.java │ │ │ ├── RestTemplateFactory.java │ │ │ ├── RetryableRestTemplate.java │ │ │ ├── UnifiedPermissionValidator.java │ │ │ ├── UserIdentityContextHolder.java │ │ │ ├── UserPermissionValidator.java │ │ │ ├── config │ │ │ │ ├── PortalConfig.java │ │ │ │ └── SpringSessionConfig.java │ │ │ ├── emailbuilder │ │ │ │ ├── ConfigPublishEmailBuilder.java │ │ │ │ ├── GrayPublishEmailBuilder.java │ │ │ │ ├── MergeEmailBuilder.java │ │ │ │ ├── NormalPublishEmailBuilder.java │ │ │ │ └── RollbackEmailBuilder.java │ │ │ └── txtresolver │ │ │ │ ├── ConfigTextResolver.java │ │ │ │ ├── FileTextResolver.java │ │ │ │ └── PropertyResolver.java │ │ │ ├── constant │ │ │ ├── PermissionType.java │ │ │ ├── RoleType.java │ │ │ ├── TracerEventType.java │ │ │ └── UserIdentityConstants.java │ │ │ ├── controller │ │ │ ├── AccessKeyController.java │ │ │ ├── AppController.java │ │ │ ├── ClusterController.java │ │ │ ├── CommitController.java │ │ │ ├── ConfigsExportController.java │ │ │ ├── ConfigsImportController.java │ │ │ ├── ConsumerController.java │ │ │ ├── EnvController.java │ │ │ ├── FavoriteController.java │ │ │ ├── GlobalSearchController.java │ │ │ ├── InstanceController.java │ │ │ ├── ItemController.java │ │ │ ├── NamespaceBranchController.java │ │ │ ├── NamespaceController.java │ │ │ ├── NamespaceLockController.java │ │ │ ├── OrganizationController.java │ │ │ ├── PageSettingController.java │ │ │ ├── PermissionController.java │ │ │ ├── PrefixPathController.java │ │ │ ├── ReleaseController.java │ │ │ ├── ReleaseHistoryController.java │ │ │ ├── SearchController.java │ │ │ ├── ServerConfigController.java │ │ │ ├── SignInController.java │ │ │ ├── SsoHeartbeatController.java │ │ │ ├── SystemInfoController.java │ │ │ └── UserInfoController.java │ │ │ ├── enricher │ │ │ ├── AdditionalUserInfoEnricher.java │ │ │ ├── adapter │ │ │ │ ├── AppDtoUserInfoEnrichedAdapter.java │ │ │ │ ├── BaseDtoUserInfoEnrichedAdapter.java │ │ │ │ └── UserInfoEnrichedAdapter.java │ │ │ └── impl │ │ │ │ └── UserDisplayNameEnricher.java │ │ │ ├── entity │ │ │ ├── bo │ │ │ │ ├── ConfigBO.java │ │ │ │ ├── Email.java │ │ │ │ ├── ItemBO.java │ │ │ │ ├── KVEntity.java │ │ │ │ ├── NamespaceBO.java │ │ │ │ ├── ReleaseBO.java │ │ │ │ ├── ReleaseHistoryBO.java │ │ │ │ └── UserInfo.java │ │ │ ├── model │ │ │ │ ├── AppModel.java │ │ │ │ ├── NamespaceCreationModel.java │ │ │ │ ├── NamespaceGrayDelReleaseModel.java │ │ │ │ ├── NamespaceReleaseModel.java │ │ │ │ ├── NamespaceSyncModel.java │ │ │ │ ├── NamespaceTextModel.java │ │ │ │ └── Verifiable.java │ │ │ ├── po │ │ │ │ ├── Authority.java │ │ │ │ ├── Favorite.java │ │ │ │ ├── Permission.java │ │ │ │ ├── Role.java │ │ │ │ ├── RolePermission.java │ │ │ │ ├── ServerConfig.java │ │ │ │ ├── UserPO.java │ │ │ │ └── UserRole.java │ │ │ └── vo │ │ │ │ ├── AppRolesAssignedUsers.java │ │ │ │ ├── Change.java │ │ │ │ ├── ClusterNamespaceRolesAssignedUsers.java │ │ │ │ ├── EnvClusterInfo.java │ │ │ │ ├── EnvironmentInfo.java │ │ │ │ ├── ItemDiffs.java │ │ │ │ ├── ItemInfo.java │ │ │ │ ├── LockInfo.java │ │ │ │ ├── NamespaceEnvRolesAssignedUsers.java │ │ │ │ ├── NamespaceIdentifier.java │ │ │ │ ├── NamespaceRolesAssignedUsers.java │ │ │ │ ├── NamespaceUsage.java │ │ │ │ ├── Number.java │ │ │ │ ├── Organization.java │ │ │ │ ├── PageSetting.java │ │ │ │ ├── PermissionCondition.java │ │ │ │ ├── ReleaseCompareResult.java │ │ │ │ ├── SystemInfo.java │ │ │ │ └── consumer │ │ │ │ ├── ConsumerCreateRequestVO.java │ │ │ │ └── ConsumerInfo.java │ │ │ ├── enums │ │ │ └── ChangeType.java │ │ │ ├── environment │ │ │ ├── DatabasePortalMetaServerProvider.java │ │ │ ├── DefaultPortalMetaServerProvider.java │ │ │ ├── Env.java │ │ │ ├── PortalMetaDomainService.java │ │ │ └── PortalMetaServerProvider.java │ │ │ ├── filter │ │ │ ├── PortalUserSessionFilter.java │ │ │ └── UserTypeResolverFilter.java │ │ │ ├── listener │ │ │ ├── AppCreationEvent.java │ │ │ ├── AppDeletionEvent.java │ │ │ ├── AppInfoChangedEvent.java │ │ │ ├── AppInfoChangedListener.java │ │ │ ├── AppNamespaceCreationEvent.java │ │ │ ├── AppNamespaceDeletionEvent.java │ │ │ ├── ConfigPublishEvent.java │ │ │ ├── ConfigPublishListener.java │ │ │ ├── CreationListener.java │ │ │ └── DeletionListener.java │ │ │ ├── repository │ │ │ ├── AppNamespaceRepository.java │ │ │ ├── AppRepository.java │ │ │ ├── AuthorityRepository.java │ │ │ ├── FavoriteRepository.java │ │ │ ├── PermissionRepository.java │ │ │ ├── RolePermissionRepository.java │ │ │ ├── RoleRepository.java │ │ │ ├── ServerConfigRepository.java │ │ │ ├── UserRepository.java │ │ │ └── UserRoleRepository.java │ │ │ ├── service │ │ │ ├── AccessKeyService.java │ │ │ ├── AdditionalUserInfoEnrichService.java │ │ │ ├── AdditionalUserInfoEnrichServiceImpl.java │ │ │ ├── AppNamespaceService.java │ │ │ ├── AppService.java │ │ │ ├── ClusterService.java │ │ │ ├── CommitService.java │ │ │ ├── ConfigsExportService.java │ │ │ ├── ConfigsImportService.java │ │ │ ├── FavoriteService.java │ │ │ ├── GlobalSearchService.java │ │ │ ├── InstanceService.java │ │ │ ├── ItemService.java │ │ │ ├── NamespaceBranchService.java │ │ │ ├── NamespaceLockService.java │ │ │ ├── NamespaceService.java │ │ │ ├── PortalDBPropertySource.java │ │ │ ├── ReleaseHistoryService.java │ │ │ ├── ReleaseService.java │ │ │ ├── RoleInitializationService.java │ │ │ ├── RolePermissionService.java │ │ │ ├── ServerConfigService.java │ │ │ └── SystemRoleManagerService.java │ │ │ ├── spi │ │ │ ├── EmailService.java │ │ │ ├── LogoutHandler.java │ │ │ ├── MQService.java │ │ │ ├── SsoHeartbeatHandler.java │ │ │ ├── UserInfoHolder.java │ │ │ ├── UserService.java │ │ │ ├── configuration │ │ │ │ ├── AuthConfiguration.java │ │ │ │ ├── AuthFilterConfiguration.java │ │ │ │ ├── EmailConfiguration.java │ │ │ │ ├── LdapExtendProperties.java │ │ │ │ ├── LdapGroupProperties.java │ │ │ │ ├── LdapMappingProperties.java │ │ │ │ ├── LdapProperties.java │ │ │ │ ├── MQConfiguration.java │ │ │ │ ├── OidcExtendProperties.java │ │ │ │ └── RoleConfiguration.java │ │ │ ├── defaultimpl │ │ │ │ ├── DefaultEmailService.java │ │ │ │ ├── DefaultLogoutHandler.java │ │ │ │ ├── DefaultMQService.java │ │ │ │ ├── DefaultRoleInitializationService.java │ │ │ │ ├── DefaultRolePermissionService.java │ │ │ │ ├── DefaultSsoHeartbeatHandler.java │ │ │ │ ├── DefaultUserInfoHolder.java │ │ │ │ └── DefaultUserService.java │ │ │ ├── ldap │ │ │ │ ├── ApolloLdapAuthenticationProvider.java │ │ │ │ ├── FilterLdapByGroupUserSearch.java │ │ │ │ └── LdapUserService.java │ │ │ ├── oidc │ │ │ │ ├── ExcludeClientCredentialsClientRegistrationRepository.java │ │ │ │ ├── OidcAuthenticationSuccessEventListener.java │ │ │ │ ├── OidcLocalUserService.java │ │ │ │ ├── OidcLocalUserServiceImpl.java │ │ │ │ ├── OidcLogoutHandler.java │ │ │ │ ├── OidcUserInfoHolder.java │ │ │ │ ├── OidcUserInfoUtil.java │ │ │ │ └── PlaceholderPasswordEncoder.java │ │ │ ├── package-info.java │ │ │ └── springsecurity │ │ │ │ ├── ApolloPasswordEncoderFactory.java │ │ │ │ ├── PasswordEncoderAdapter.java │ │ │ │ ├── SpringSecurityUserInfoHolder.java │ │ │ │ └── SpringSecurityUserService.java │ │ │ └── util │ │ │ ├── ConfigFileUtils.java │ │ │ ├── ConfigToFileUtils.java │ │ │ ├── KeyValueUtils.java │ │ │ ├── NamespaceBOUtils.java │ │ │ ├── RelativeDateFormat.java │ │ │ ├── RoleUtils.java │ │ │ └── checker │ │ │ ├── AuthUserPasswordChecker.java │ │ │ ├── CheckResult.java │ │ │ └── UserPasswordChecker.java │ ├── resources │ │ ├── apollo-env.properties │ │ ├── apollo-portal.conf │ │ ├── application-github.properties │ │ ├── application-ldap-activedirectory-sample.yml │ │ ├── application-ldap-apacheds-sample.yml │ │ ├── application-ldap-openldap-sample.yml │ │ ├── application-oidc-sample.yml │ │ ├── application.properties │ │ ├── application.yml │ │ ├── jpa │ │ │ └── portaldb.init.h2.sql │ │ ├── logback.xml │ │ ├── portal.properties │ │ └── static │ │ │ ├── app.html │ │ │ ├── app │ │ │ ├── access_key.html │ │ │ ├── manage_cluster.html │ │ │ └── setting.html │ │ │ ├── audit_log_menu.html │ │ │ ├── audit_log_trace_detail.html │ │ │ ├── cluster.html │ │ │ ├── cluster │ │ │ └── ns_role.html │ │ │ ├── config.html │ │ │ ├── config │ │ │ ├── diff.html │ │ │ ├── history.html │ │ │ └── sync.html │ │ │ ├── config_export.html │ │ │ ├── default_sso_heartbeat.html │ │ │ ├── delete_app_cluster_namespace.html │ │ │ ├── global_search_value.html │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ └── zh-CN.json │ │ │ ├── img │ │ │ ├── 404.png │ │ │ ├── add.png │ │ │ ├── assign.png │ │ │ ├── branch.png │ │ │ ├── brush.png │ │ │ ├── cancel.png │ │ │ ├── change.png │ │ │ ├── comment.png │ │ │ ├── compare.png │ │ │ ├── config.png │ │ │ ├── copy.png │ │ │ ├── create.png │ │ │ ├── delete.png │ │ │ ├── diff.png │ │ │ ├── edit.png │ │ │ ├── env.png │ │ │ ├── export.png │ │ │ ├── github-fill.svg │ │ │ ├── github.png │ │ │ ├── gray.png │ │ │ ├── hide_sidebar.png │ │ │ ├── import.png │ │ │ ├── info.png │ │ │ ├── language.png │ │ │ ├── like.png │ │ │ ├── logo-detail.png │ │ │ ├── logo-simple.png │ │ │ ├── machine.png │ │ │ ├── manage.png │ │ │ ├── merge.png │ │ │ ├── more.png │ │ │ ├── nodata.png │ │ │ ├── operate.png │ │ │ ├── plus-white.png │ │ │ ├── plus.png │ │ │ ├── question.png │ │ │ ├── refresh.png │ │ │ ├── release-all.png │ │ │ ├── release-history.png │ │ │ ├── release.png │ │ │ ├── rollback.png │ │ │ ├── rule.png │ │ │ ├── secret.png │ │ │ ├── show_sidebar.png │ │ │ ├── submit.png │ │ │ ├── sync-error.png │ │ │ ├── sync-succ.png │ │ │ ├── sync.png │ │ │ ├── syntax.png │ │ │ ├── table.png │ │ │ ├── test.png │ │ │ ├── text.png │ │ │ ├── top.png │ │ │ └── unlike.png │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ ├── namespace.html │ │ │ ├── namespace │ │ │ └── role.html │ │ │ ├── open │ │ │ ├── add-consumer.html │ │ │ ├── grant-permission-modal.html │ │ │ └── manage.html │ │ │ ├── scripts │ │ │ ├── AppUtils.js │ │ │ ├── PageCommon.js │ │ │ ├── app.js │ │ │ ├── controller │ │ │ │ ├── AccessKeyController.js │ │ │ │ ├── AppController.js │ │ │ │ ├── AuditLogMenuController.js │ │ │ │ ├── AuditLogTraceDetailController.js │ │ │ │ ├── BackTopController.js │ │ │ │ ├── ClusterController.js │ │ │ │ ├── ConfigExportController.js │ │ │ │ ├── DeleteAppClusterNamespaceController.js │ │ │ │ ├── GlobalSearchValueController.js │ │ │ │ ├── IndexController.js │ │ │ │ ├── LoginController.js │ │ │ │ ├── ManageClusterController.js │ │ │ │ ├── NamespaceController.js │ │ │ │ ├── ServerConfigController.js │ │ │ │ ├── SettingController.js │ │ │ │ ├── SystemInfoController.js │ │ │ │ ├── UserController.js │ │ │ │ ├── config │ │ │ │ │ ├── ConfigBaseInfoController.js │ │ │ │ │ ├── ConfigNamespaceController.js │ │ │ │ │ ├── DiffConfigController.js │ │ │ │ │ ├── ReleaseHistoryController.js │ │ │ │ │ └── SyncConfigController.js │ │ │ │ ├── open │ │ │ │ │ └── OpenManageController.js │ │ │ │ └── role │ │ │ │ │ ├── ClusterNamespaceRoleController.js │ │ │ │ │ ├── NamespaceRoleController.js │ │ │ │ │ └── SystemRoleController.js │ │ │ ├── directive │ │ │ │ ├── delete-namespace-modal-directive.js │ │ │ │ ├── diff-directive.js │ │ │ │ ├── directive.js │ │ │ │ ├── gray-release-rules-modal-directive.js │ │ │ │ ├── import-namespace-modal-directive.js │ │ │ │ ├── item-modal-directive.js │ │ │ │ ├── merge-and-publish-modal-directive.js │ │ │ │ ├── namespace-panel-directive.js │ │ │ │ ├── open-manage-grant-permission-modal-directive.js │ │ │ │ ├── publish-deny-modal-directive.js │ │ │ │ ├── release-modal-directive.js │ │ │ │ ├── rollback-modal-directive.js │ │ │ │ └── show-text-modal-directive.js │ │ │ ├── services │ │ │ │ ├── AccessKeyService.js │ │ │ │ ├── AppService.js │ │ │ │ ├── AuditLogService.js │ │ │ │ ├── ClusterService.js │ │ │ │ ├── CommitService.js │ │ │ │ ├── CommonService.js │ │ │ │ ├── ConfigService.js │ │ │ │ ├── ConsumerService.js │ │ │ │ ├── EnvService.js │ │ │ │ ├── EventManager.js │ │ │ │ ├── ExportService.js │ │ │ │ ├── FavoriteService.js │ │ │ │ ├── GlobalSearchValueService.js │ │ │ │ ├── InstanceService.js │ │ │ │ ├── NamespaceBranchService.js │ │ │ │ ├── NamespaceLockService.js │ │ │ │ ├── NamespaceService.js │ │ │ │ ├── OrganizationService.js │ │ │ │ ├── PermissionService.js │ │ │ │ ├── ReleaseHistoryService.js │ │ │ │ ├── ReleaseService.js │ │ │ │ ├── ServerConfigService.js │ │ │ │ ├── SystemInfoService.js │ │ │ │ ├── SystemRoleService.js │ │ │ │ └── UserService.js │ │ │ └── valdr.js │ │ │ ├── server_config_manage.html │ │ │ ├── styles │ │ │ ├── audit-log.css │ │ │ └── common-style.css │ │ │ ├── system-role-manage.html │ │ │ ├── system_info.html │ │ │ ├── user-manage.html │ │ │ ├── vendor │ │ │ ├── angular │ │ │ │ ├── angular-cookies.min.js │ │ │ │ ├── angular-resource.min.js │ │ │ │ ├── angular-route.min.js │ │ │ │ ├── angular-sanitize.min.js │ │ │ │ ├── angular-toastr-1.4.1.min.css │ │ │ │ ├── angular-toastr-1.4.1.tpls.min.js │ │ │ │ ├── angular-translate.2.18.1 │ │ │ │ │ ├── angular-translate-loader-static-files.min.js │ │ │ │ │ ├── angular-translate-storage-cookie.min.js │ │ │ │ │ └── angular-translate.min.js │ │ │ │ ├── angular-ui-router.min.js │ │ │ │ ├── angular.min.js │ │ │ │ ├── bootbox.min.js │ │ │ │ ├── loading-bar.min.css │ │ │ │ ├── loading-bar.min.js │ │ │ │ └── ui-bootstrap-tpls-0.13.0.min.js │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-treeview.min.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── clipboard.min.js │ │ │ ├── diff.min.js │ │ │ ├── font-awesome.min.css │ │ │ ├── iconfont │ │ │ │ ├── iconfont.css │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ └── iconfont.woff2 │ │ │ ├── jquery-plugin │ │ │ │ ├── jquery.textareafullscreen.js │ │ │ │ └── textareafullscreen.css │ │ │ ├── jquery.min.js │ │ │ ├── lodash.min.js │ │ │ ├── select2 │ │ │ │ ├── select2.min.css │ │ │ │ └── select2.min.js │ │ │ ├── ui-ace │ │ │ │ ├── ace.js │ │ │ │ ├── mode-json.js │ │ │ │ ├── mode-properties.js │ │ │ │ ├── mode-xml.js │ │ │ │ ├── mode-yaml.js │ │ │ │ ├── theme-eclipse.js │ │ │ │ ├── ui-ace.min.js │ │ │ │ ├── worker-json.js │ │ │ │ └── worker-xml.js │ │ │ ├── valdr │ │ │ │ ├── valdr-message.min.js │ │ │ │ └── valdr.min.js │ │ │ ├── xml2json.min.js │ │ │ └── yaml.min.js │ │ │ └── views │ │ │ ├── common │ │ │ ├── footer.html │ │ │ └── nav.html │ │ │ └── component │ │ │ ├── back-top.html │ │ │ ├── confirm-dialog.html │ │ │ ├── delete-namespace-modal.html │ │ │ ├── diff.html │ │ │ ├── entrance.html │ │ │ ├── env-selector.html │ │ │ ├── gray-release-rules-modal.html │ │ │ ├── import-namespace-modal.html │ │ │ ├── item-modal.html │ │ │ ├── merge-and-publish-modal.html │ │ │ ├── multiple-user-selector.html │ │ │ ├── namespace-panel-branch-tab.html │ │ │ ├── namespace-panel-header.html │ │ │ ├── namespace-panel-master-tab.html │ │ │ ├── namespace-panel.html │ │ │ ├── publish-deny-modal.html │ │ │ ├── release-modal.html │ │ │ ├── rollback-modal.html │ │ │ ├── show-text-modal.html │ │ │ └── user-selector.html │ └── scripts │ │ ├── shutdown.sh │ │ └── startup.sh │ └── test │ ├── java │ └── com │ │ └── ctrip │ │ └── framework │ │ └── apollo │ │ ├── ControllableAuthorizationConfiguration.java │ │ ├── LocalPortalApplication.java │ │ ├── SkipAuthorizationConfiguration.java │ │ ├── openapi │ │ ├── auth │ │ │ └── ConsumerPermissionValidatorTest.java │ │ ├── filter │ │ │ └── ConsumerAuthenticationFilterTest.java │ │ ├── service │ │ │ ├── ConsumerRolePermissionServiceTest.java │ │ │ ├── ConsumerServiceIntegrationTest.java │ │ │ └── ConsumerServiceTest.java │ │ ├── util │ │ │ ├── ConsumerAuditUtilTest.java │ │ │ └── ConsumerAuthUtilTest.java │ │ └── v1 │ │ │ └── controller │ │ │ ├── AbstractControllerTest.java │ │ │ ├── AppControllerIntegrationTest.java │ │ │ ├── AppControllerParamBindLowLevelTest.java │ │ │ ├── AppControllerTest.java │ │ │ ├── ClusterControllerParamBindLowLevelTest.java │ │ │ ├── ClusterControllerTest.java │ │ │ ├── EnvControllerTest.java │ │ │ ├── NamespaceControllerTest.java │ │ │ ├── NamespaceControllerWithAuthorizationTest.java │ │ │ └── OrganizationControllerTest.java │ │ └── portal │ │ ├── AbstractIntegrationTest.java │ │ ├── AbstractUnitTest.java │ │ ├── RetryableRestTemplateTest.java │ │ ├── ServiceExceptionTest.java │ │ ├── component │ │ ├── AbstractPermissionValidatorTest.java │ │ ├── UnifiedPermissionValidatorTest.java │ │ ├── UserIdentityContextHolderTest.java │ │ ├── UserPermissionValidatorTest.java │ │ └── txtresolver │ │ │ ├── FileTextResolverTest.java │ │ │ └── PropertyResolverTest.java │ │ ├── config │ │ └── ConfigTest.java │ │ ├── controller │ │ ├── CommitControllerTest.java │ │ ├── ConsumerControllerTest.java │ │ ├── GlobalSearchControllerTest.java │ │ ├── ItemControllerAuthIntegrationTest.java │ │ ├── ItemControllerTest.java │ │ ├── PermissionControllerTest.java │ │ ├── SearchControllerTest.java │ │ ├── ServerConfigControllerTest.java │ │ └── UserInfoControllerTest.java │ │ ├── environment │ │ ├── BaseIntegrationTest.java │ │ ├── DatabasePortalMetaServerProviderTest.java │ │ ├── DefaultPortalMetaServerProviderTest.java │ │ ├── EnvTest.java │ │ └── PortalMetaDomainServiceTest.java │ │ ├── filter │ │ ├── PortalOpenApiAuthenticationScenariosTest.java │ │ └── UserTypeResolverFilter.java │ │ ├── service │ │ ├── AppNamespaceServiceTest.java │ │ ├── AppServiceTest.java │ │ ├── ConfigServiceTest.java │ │ ├── ConfigsExportServiceTest.java │ │ ├── FavoriteServiceTest.java │ │ ├── GlobalSearchServiceTest.java │ │ └── NamespaceServiceTest.java │ │ ├── spi │ │ └── defaultImpl │ │ │ ├── RoleInitializationServiceTest.java │ │ │ └── RolePermissionServiceTest.java │ │ └── util │ │ ├── AuthUserPasswordCheckerTest.java │ │ ├── ConfigFileUtilsTest.java │ │ ├── KeyValueUtilsTest.java │ │ └── RoleUtilsTest.java │ └── resources │ ├── application.properties │ ├── application.yml │ ├── import.sql │ ├── logback-test.xml │ ├── sql │ ├── appnamespaceservice │ │ └── init-appnamespace.sql │ ├── cleanup.sql │ ├── favorites │ │ └── favorites.sql │ ├── openapi │ │ ├── ConsumerServiceIntegrationTest.commonData.sql │ │ ├── ConsumerServiceIntegrationTest.testFindAppIdsAuthorizedByConsumerId.sql │ │ └── NamespaceControllerTest.testCreateAppNamespace.sql │ └── permission │ │ ├── RolePermissionServiceTest.deleteRolePermissionsByAppIdWithClusterRoles.sql │ │ ├── consumer_role_permission_service │ │ ├── test_get_user_permission_set_different_users.sql │ │ ├── test_get_user_permission_set_no_roles.sql │ │ ├── test_get_user_permission_set_roles_without_permissions.sql │ │ └── test_get_user_permission_set_with_permissions.sql │ │ ├── insert-test-consumerroles.sql │ │ ├── insert-test-getUserPermissionSet.sql │ │ ├── insert-test-permissions.sql │ │ ├── insert-test-rolepermissions.sql │ │ ├── insert-test-roles.sql │ │ └── insert-test-userroles.sql │ └── yaml │ ├── case1.yaml │ ├── case2.yaml │ └── case3.yaml ├── changes ├── changes-1.9.0.md ├── changes-1.9.1.md ├── changes-1.9.2.md ├── changes-2.0.0.md ├── changes-2.0.1.md ├── changes-2.1.0.md ├── changes-2.2.0.md ├── changes-2.3.0.md └── changes-2.4.0.md ├── doc └── images │ ├── add-item-in-new-namespace.png │ ├── apollo-client-maven-artifacts.png │ ├── apollo-client-monitor-jmx.jpg │ ├── apollo-client-monitor-prometheus.png │ ├── apollo-deployment.png │ ├── apollo-erd-role-permission.png │ ├── apollo-erd.png │ ├── apollo-home-screenshot.jpg │ ├── apollo-home-screenshot.png │ ├── apollo-net-apollo-cluster.png │ ├── apollo-net-app-config.png │ ├── apollo-net-config-cache.png │ ├── apollo-net-server-url-config.png │ ├── apollo-open-manage-list.png │ ├── apollo-open-manage-token.png │ ├── apollo-open-manage.png │ ├── app-created.png │ ├── app-id-location.png │ ├── app-permission-entry.png │ ├── app-permission-search-user.png │ ├── app-permission-user-added.png │ ├── app-permssion-entry.png │ ├── application-config-precedence.png │ ├── basic-architecture.png │ ├── client-architecture.png │ ├── client-local-cache.png │ ├── cluster-created.png │ ├── configure-view-permissions.png │ ├── create-app-entry.png │ ├── create-app.png │ ├── create-cluster-detail.png │ ├── create-cluster.png │ ├── create-item-detail.png │ ├── create-item-entry.png │ ├── create-namespace-detail.png │ ├── create-namespace-select-type.png │ ├── create-namespace.png │ ├── delete-app-cluster-namespace-detail.png │ ├── delete-app-cluster-namespace-entry.png │ ├── edit-item-entry.png │ ├── edit-item.png │ ├── email-template-release.png │ ├── email-template-rollback.png │ ├── environment-remote-source.png │ ├── environment.png │ ├── gray-release │ ├── abandon-gray-release.png │ ├── click-gray-release.png │ ├── create-gray-release.png │ ├── edit-gray-release-config.png │ ├── full-release-confirm-dialog-2.png │ ├── full-release-confirm-dialog.png │ ├── gray-release-config-submitted.png │ ├── gray-release-confirm-dialog.png │ ├── gray-release-diff-items.png │ ├── gray-release-instance-list.png │ ├── gray-release-ip-selected.png │ ├── gray-release-rule-saved.png │ ├── initial-config.png │ ├── initial-gray-release-tab.png │ ├── initial-instance-list.png │ ├── manual-input-gray-release-ip-2.png │ ├── manual-input-gray-release-ip.png │ ├── manual-input-gray-release-label.png │ ├── manual-input-gray-release-label2.png │ ├── master-branch-instance-list-after-full-release.png │ ├── master-branch-instance-list.png │ ├── new-gray-release-rule.png │ ├── prepare-to-do-gray-release.png │ ├── prepare-to-full-release.png │ ├── select-gray-release-ip.png │ ├── submit-gray-release-config.png │ ├── view-release-history-detail.png │ └── view-release-history.png │ ├── hermes-portal-publish-detail.png │ ├── hermes-portal-publish-entry.png │ ├── item-created-in-new-namespace.png │ ├── item-created.png │ ├── item-num-limit-enabled.png │ ├── item-num-limit.png │ ├── link-namespace-detail.png │ ├── link-public-namespace-entry.png │ ├── link-public-namespace.png │ ├── local-development │ ├── ApolloApplication-Mysql-VM-Options.png │ ├── ApolloApplication-Overview.png │ ├── ApolloApplication-Run.png │ ├── ApolloApplication-VM-Options.png │ ├── ConfigAdminApplication-Eureka.png │ ├── ConfigAdminApplication-Overview.png │ ├── ConfigAdminApplication-Run.png │ ├── ConfigAdminApplication-VM-Options.png │ ├── NewConfiguration-Application.png │ ├── PortalApplication-Home.png │ ├── PortalApplication-Overview.png │ ├── PortalApplication-Run.png │ ├── PortalApplication-VM-Options.png │ ├── apollo-demo-app-properties.jpg │ ├── apollo-demo-overview.jpg │ ├── apollo-demo-run.png │ ├── apollo-demo-vm-options.jpg │ ├── create-release.png │ ├── fill-release-form.png │ ├── publish-docker.jpg │ ├── publish-sdk.png │ └── push-images-to-hub.png │ ├── logo │ ├── logo-detail.png │ ├── logo-detail@2x.png │ ├── logo-img.png │ ├── logo-simple.png │ ├── logo-simple@2x.png │ ├── logo-stack.png │ ├── logo-stack.svg │ ├── logo-stack@2x.png │ ├── logo.png │ └── logo@2x.png │ ├── lyliyongblue-apollo-deployment.png │ ├── manage-cluster-entry.png │ ├── module-dependency.png │ ├── namespace-model-example.png │ ├── namespace-num-limit-enabled.png │ ├── namespace-num-limit-white.png │ ├── namespace-num-limit.png │ ├── namespace-permission-edit.png │ ├── namespace-permission-entry.png │ ├── namespace-publish-permission.png │ ├── ns-permission-app-allns-entry.png │ ├── ns-permission-app-allns-select.png │ ├── ns-permission-app-env-cluster-edit.png │ ├── ns-permission-app-env-cluster-entry.png │ ├── ns-permission-app-env-ns-select.png │ ├── overall-architecture.png │ ├── override-public-namespace-entry.png │ ├── override-public-namespace-item-done.png │ ├── override-public-namespace-item-publish-entry.png │ ├── override-public-namespace-item-publish.png │ ├── override-public-namespace-item.png │ ├── public-namespace-config-precedence.png │ ├── public-namespace-edit-item-entry.png │ ├── public-namespace-edit-item.png │ ├── public-namespace-item-created.png │ ├── public-namespace-publish-items-entry.png │ ├── public-namespace-publish-items.png │ ├── publish-items-entry.png │ ├── publish-items-in-new-namespace.png │ ├── publish-items.png │ ├── release-message-design.png │ ├── release-message-notification-design.png │ ├── tech-support-qq-1.png │ ├── tech-support-qq-2.png │ ├── tech-support-qq-3.png │ ├── tech-support-qq-4.png │ ├── tech-support-qq.png │ ├── text-mode-config-entry.png │ ├── text-mode-config-overview.png │ ├── text-mode-config-submit.png │ └── text-mode-spring-boot-config-sample.png ├── docs ├── .nojekyll ├── CNAME ├── _coverpage.md ├── charts │ ├── apollo-portal-0.1.0.tgz │ ├── apollo-portal-0.1.1.tgz │ ├── apollo-portal-0.1.2.tgz │ ├── apollo-portal-0.2.0.tgz │ ├── apollo-portal-0.2.1.tgz │ ├── apollo-portal-0.2.2.tgz │ ├── apollo-portal-0.3.0.tgz │ ├── apollo-portal-0.3.1.tgz │ ├── apollo-service-0.1.0.tgz │ ├── apollo-service-0.1.1.tgz │ ├── apollo-service-0.1.2.tgz │ ├── apollo-service-0.2.0.tgz │ ├── apollo-service-0.2.1.tgz │ ├── apollo-service-0.2.2.tgz │ ├── apollo-service-0.3.0.tgz │ ├── apollo-service-0.3.1.tgz │ └── index.yaml ├── css │ ├── buble.css │ ├── dark.css │ ├── fonts.css │ ├── pure.css │ └── vue.css ├── en │ ├── README.md │ ├── _navbar.md │ ├── _sidebar.md │ ├── client │ │ ├── c-sdks-user-guide.md │ │ ├── cpp-sdks-user-guide.md │ │ ├── dotnet-sdk-user-guide.md │ │ ├── golang-sdks-user-guide.md │ │ ├── java-sdk-user-guide.md │ │ ├── k8s-configmap-user-guide.md │ │ ├── nodejs-sdks-user-guide.md │ │ ├── other-language-client-user-guide.md │ │ ├── php-sdks-user-guide.md │ │ ├── python-sdks-user-guide.md │ │ └── rust-sdks-user-guide.md │ ├── community │ │ ├── team.md │ │ └── thank-you.md │ ├── contribution │ │ ├── apollo-development-guide.md │ │ └── apollo-release-guide.md │ ├── deployment │ │ ├── deployment-architecture.md │ │ ├── distributed-deployment-guide.md │ │ ├── quick-start-docker.md │ │ ├── quick-start.md │ │ ├── third-party-tool-btpanel.md │ │ └── third-party-tool-rainbond.md │ ├── design │ │ ├── apollo-core-concept-namespace.md │ │ ├── apollo-design.md │ │ └── apollo-introduction.md │ ├── extension │ │ ├── portal-how-to-enable-email-service.md │ │ ├── portal-how-to-enable-session-store.md │ │ ├── portal-how-to-enable-webhook-notification.md │ │ └── portal-how-to-implement-user-login-function.md │ ├── faq │ │ ├── common-issues-in-deployment-and-development-phase.md │ │ └── faq.md │ ├── images │ │ ├── Configuration query-Non properties.png │ │ ├── Configuration query-properties.png │ │ ├── System-parameterization-of-global-search-configuration-items.png │ │ ├── apollo-home-screenshot.jpg │ │ ├── community │ │ │ ├── ctrip.jpeg │ │ │ ├── docsify.svg │ │ │ ├── intellij-idea.svg │ │ │ ├── jetbrains.svg │ │ │ └── jprofiler.png │ │ └── deployment │ │ │ └── btpanel │ │ │ ├── addApollo.png │ │ │ ├── console.png │ │ │ ├── install-Apollo.png │ │ │ ├── install.png │ │ │ └── install2.png │ ├── misc │ │ └── apollo-benchmark.md │ ├── portal │ │ ├── apollo-open-api-platform.md │ │ ├── apollo-user-guide.md │ │ └── apollo-user-practices.md │ └── quick-start.md ├── index.html ├── scripts │ └── multiple-language-redirect.js └── zh │ ├── README.md │ ├── _navbar.md │ ├── _sidebar.md │ ├── client │ ├── c-sdks-user-guide.md │ ├── cpp-sdks-user-guide.md │ ├── dotnet-sdk-user-guide.md │ ├── golang-sdks-user-guide.md │ ├── java-sdk-user-guide.md │ ├── k8s-configmap-user-guide.md │ ├── nodejs-sdks-user-guide.md │ ├── other-language-client-user-guide.md │ ├── php-sdks-user-guide.md │ ├── python-sdks-user-guide.md │ └── rust-sdks-user-guide.md │ ├── community │ ├── team.md │ └── thank-you.md │ ├── contribution │ ├── apollo-development-guide.md │ └── apollo-release-guide.md │ ├── deployment │ ├── deployment-architecture.md │ ├── distributed-deployment-guide.md │ ├── quick-start-docker.md │ ├── quick-start.md │ ├── third-party-tool-btpanel.md │ └── third-party-tool-rainbond.md │ ├── design │ ├── apollo-core-concept-namespace.md │ ├── apollo-design.md │ └── apollo-introduction.md │ ├── extension │ ├── portal-how-to-enable-email-service.md │ ├── portal-how-to-enable-session-store.md │ ├── portal-how-to-enable-webhook-notification.md │ └── portal-how-to-implement-user-login-function.md │ ├── faq │ ├── common-issues-in-deployment-and-development-phase.md │ └── faq.md │ ├── images │ ├── Configuration query-Non properties.png │ ├── Configuration query-properties.png │ ├── System-parameterization-of-global-search-configuration-items.png │ ├── community │ │ └── ctrip.png │ └── deployment │ │ └── btpanel │ │ ├── console.png │ │ ├── docker-menu.png │ │ ├── install-docker.png │ │ └── search-apollo.png │ ├── misc │ └── apollo-benchmark.md │ └── portal │ ├── apollo-open-api-platform.md │ ├── apollo-user-guide.md │ └── apollo-user-practices.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── scripts ├── build.bat ├── build.sh ├── openapi └── bash │ ├── openapi-usage-example.sh │ └── openapi.sh └── sql ├── profiles ├── h2-default │ ├── apolloconfigdb.sql │ ├── apolloportaldb.sql │ └── delta │ │ ├── v220-v230 │ │ ├── apolloconfigdb-v220-v230.sql │ │ └── apolloportaldb-v220-v230.sql │ │ └── v230-v240 │ │ ├── apolloconfigdb-v230-v240.sql │ │ └── apolloportaldb-v230-v240.sql ├── mysql-database-not-specified │ ├── apolloconfigdb.sql │ ├── apolloportaldb.sql │ └── delta │ │ ├── v220-v230 │ │ ├── apolloconfigdb-v220-v230.sql │ │ └── apolloportaldb-v220-v230.sql │ │ └── v230-v240 │ │ ├── apolloconfigdb-v230-v240.sql │ │ └── apolloportaldb-v230-v240.sql └── mysql-default │ ├── apolloconfigdb.sql │ ├── apolloportaldb.sql │ └── delta │ ├── v040-v050 │ ├── apolloconfigdb-v040-v050.sql │ └── apolloportaldb-v040-v050.sql │ ├── v060-v062 │ ├── apolloconfigdb-v060-v062.sql │ └── apolloportaldb-v060-v062.sql │ ├── v080-v090 │ └── apolloportaldb-v080-v090.sql │ ├── v151-v160 │ └── apolloconfigdb-v151-v160.sql │ ├── v170-v180 │ ├── apolloconfigdb-v170-v180.sql │ └── apolloportaldb-v170-v180.sql │ ├── v180-v190 │ ├── apolloconfigdb-v180-v190.sql │ └── apolloportaldb-v180-v190.sql │ ├── v190-v200 │ ├── apolloconfigdb-v190-v200-after.sql │ ├── apolloconfigdb-v190-v200.sql │ ├── apolloportaldb-v190-v200-after.sql │ └── apolloportaldb-v190-v200.sql │ ├── v200-v210 │ └── apolloconfigdb-v200-v210.sql │ ├── v210-v220 │ ├── apolloconfigdb-v210-v220.sql │ └── apolloportaldb-v210-v220.sql │ ├── v220-v230 │ ├── apolloconfigdb-v220-v230.sql │ └── apolloportaldb-v220-v230.sql │ └── v230-v240 │ ├── apolloconfigdb-v230-v240.sql │ └── apolloportaldb-v230-v240.sql └── src ├── apolloconfigdb.sql ├── apolloportaldb.sql ├── delta ├── v220-v230 │ ├── apolloconfigdb-v220-v230.sql │ └── apolloportaldb-v220-v230.sql └── v230-v240 │ ├── apolloconfigdb-v230-v240.sql │ └── apolloportaldb-v230-v240.sql └── gist ├── autoGeneratedDeclaration.sql ├── h2Function.sql ├── setupDatabase.sql └── useDatabase.sql /.gitattributes: -------------------------------------------------------------------------------- 1 | text=auto 2 | *.sh text eol=lf 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/ISSUE_TEMPLATE/bug_report_en.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/ISSUE_TEMPLATE/bug_report_zh.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/ISSUE_TEMPLATE/feature_request_en.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/ISSUE_TEMPLATE/feature_request_zh.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/code-style-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/workflows/code-style-check.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/commit_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/workflows/commit_lint.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.github/workflows/license.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apollo-adminservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/pom.xml -------------------------------------------------------------------------------- /apollo-adminservice/src/assembly/assembly-descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/assembly/assembly-descriptor.xml -------------------------------------------------------------------------------- /apollo-adminservice/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/adminservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/adminservice.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/apollo-adminservice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/apollo-adminservice.conf -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application-consul-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application-consul-discovery.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application-database-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application-database-discovery.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application-github.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application-github.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application-kubernetes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application-kubernetes.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application-nacos-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application-nacos-discovery.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application-zookeeper-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application-zookeeper-discovery.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/application.yml -------------------------------------------------------------------------------- /apollo-adminservice/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/resources/logback.xml -------------------------------------------------------------------------------- /apollo-adminservice/src/main/scripts/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/scripts/shutdown.sh -------------------------------------------------------------------------------- /apollo-adminservice/src/main/scripts/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/main/scripts/startup.sh -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/application.properties -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/application.yml -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/controller/cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/controller/cleanup.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/controller/test-itemset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/controller/test-itemset.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/controller/test-release.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/controller/test-release.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/controller/test-server-config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/controller/test-server-config.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/data.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/filter/test-access-control-disabled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/filter/test-access-control-disabled.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/filter/test-access-control-enabled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/filter/test-access-control-enabled.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/import.sql -------------------------------------------------------------------------------- /apollo-adminservice/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-adminservice/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /apollo-assembly/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/pom.xml -------------------------------------------------------------------------------- /apollo-assembly/src/main/resources/application-database-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/main/resources/application-database-discovery.properties -------------------------------------------------------------------------------- /apollo-assembly/src/main/resources/application-github.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/main/resources/application-github.properties -------------------------------------------------------------------------------- /apollo-assembly/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/main/resources/application.properties -------------------------------------------------------------------------------- /apollo-assembly/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/main/resources/application.yml -------------------------------------------------------------------------------- /apollo-assembly/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/main/resources/logback.xml -------------------------------------------------------------------------------- /apollo-assembly/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/test/resources/application.properties -------------------------------------------------------------------------------- /apollo-assembly/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/test/resources/application.yml -------------------------------------------------------------------------------- /apollo-assembly/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-assembly/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /apollo-audit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-audit/README.md -------------------------------------------------------------------------------- /apollo-audit/apollo-audit-annotation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-audit/apollo-audit-annotation/pom.xml -------------------------------------------------------------------------------- /apollo-audit/apollo-audit-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-audit/apollo-audit-api/pom.xml -------------------------------------------------------------------------------- /apollo-audit/apollo-audit-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-audit/apollo-audit-impl/pom.xml -------------------------------------------------------------------------------- /apollo-audit/apollo-audit-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-audit/apollo-audit-spring-boot-starter/pom.xml -------------------------------------------------------------------------------- /apollo-audit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-audit/pom.xml -------------------------------------------------------------------------------- /apollo-biz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/pom.xml -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/ApolloBizConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/ApolloBizConfig.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/auth/WebSecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/auth/WebSecurityConfig.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/config/BizConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/config/BizConfig.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/AccessKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/AccessKey.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Audit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Audit.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Cluster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Cluster.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Commit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Commit.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/GrayReleaseRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/GrayReleaseRule.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Instance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Instance.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/InstanceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/InstanceConfig.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Item.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Namespace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Namespace.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/NamespaceLock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/NamespaceLock.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Privilege.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Privilege.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Release.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/Release.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ReleaseHistory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ReleaseHistory.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ReleaseMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ReleaseMessage.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ServerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ServerConfig.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ServiceRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/entity/ServiceRegistry.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/MessageSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/MessageSender.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/Topics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/Topics.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/registry/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/registry/package-info.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/AdminService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/AdminService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/AppService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/AppService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/AuditService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/AuditService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ClusterService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ClusterService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/CommitService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/CommitService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/InstanceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/InstanceService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ItemService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ItemService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ItemSetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ItemSetService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ReleaseService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/service/ReleaseService.java -------------------------------------------------------------------------------- /apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/utils/EntityManagerUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/utils/EntityManagerUtil.java -------------------------------------------------------------------------------- /apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/AbstractIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/AbstractIntegrationTest.java -------------------------------------------------------------------------------- /apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/AbstractUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/AbstractUnitTest.java -------------------------------------------------------------------------------- /apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/BizTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/BizTestConfiguration.java -------------------------------------------------------------------------------- /apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/MockBeanFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/MockBeanFactory.java -------------------------------------------------------------------------------- /apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/config/BizConfigTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/config/BizConfigTest.java -------------------------------------------------------------------------------- /apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/service/ItemServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/service/ItemServiceTest.java -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/application.properties -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/data.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/import.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/json/converter/element.1.json: -------------------------------------------------------------------------------- 1 | {"a":"1"} -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/json/converter/element.2.json: -------------------------------------------------------------------------------- 1 | {"a":"1","disableCheck":"true"} -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/accesskey-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/accesskey-test.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/clean.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/clean.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/item-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/item-test.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/itemset-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/itemset-test.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/namespace-branch-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/namespace-branch-test.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/namespace-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/namespace-test.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/release-creation-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/release-creation-test.sql -------------------------------------------------------------------------------- /apollo-biz/src/test/resources/sql/release-history-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-biz/src/test/resources/sql/release-history-test.sql -------------------------------------------------------------------------------- /apollo-build-sql-converter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-build-sql-converter/pom.xml -------------------------------------------------------------------------------- /apollo-buildtools/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /apollo-buildtools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-buildtools/pom.xml -------------------------------------------------------------------------------- /apollo-buildtools/src/main/resources/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-buildtools/src/main/resources/LICENSE-2.0.txt -------------------------------------------------------------------------------- /apollo-buildtools/src/main/resources/google_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-buildtools/src/main/resources/google_checks.xml -------------------------------------------------------------------------------- /apollo-buildtools/src/main/scripts/deploy_jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-buildtools/src/main/scripts/deploy_jenkins.sh -------------------------------------------------------------------------------- /apollo-buildtools/style/eclipse-java-google-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-buildtools/style/eclipse-java-google-style.xml -------------------------------------------------------------------------------- /apollo-buildtools/style/intellij-java-google-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-buildtools/style/intellij-java-google-style.xml -------------------------------------------------------------------------------- /apollo-buildtools/style/license/apollo-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-buildtools/style/license/apollo-license -------------------------------------------------------------------------------- /apollo-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/pom.xml -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/AccessKeyDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/AccessKeyDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/AppDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/AppDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/BaseDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/BaseDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ClusterDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ClusterDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/CommitDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/CommitDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/InstanceDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/InstanceDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ItemDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ItemDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ItemInfoDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ItemInfoDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/NamespaceDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/NamespaceDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/PageDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/PageDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ReleaseDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/dto/ReleaseDTO.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/entity/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/entity/App.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/entity/BaseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/entity/BaseEntity.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/entity/EntityPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/entity/EntityPair.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/jpa/H2Function.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/jpa/H2Function.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/utils/BeanUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/utils/BeanUtils.java -------------------------------------------------------------------------------- /apollo-common/src/main/java/com/ctrip/framework/apollo/common/utils/WebUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/java/com/ctrip/framework/apollo/common/utils/WebUtils.java -------------------------------------------------------------------------------- /apollo-common/src/main/resources/application-h2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/resources/application-h2.properties -------------------------------------------------------------------------------- /apollo-common/src/main/resources/application-mysql.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/resources/application-mysql.properties -------------------------------------------------------------------------------- /apollo-common/src/main/resources/application-postgre.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/resources/application-postgre.properties -------------------------------------------------------------------------------- /apollo-common/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/resources/application.yaml -------------------------------------------------------------------------------- /apollo-common/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-common/src/main/resources/banner.txt -------------------------------------------------------------------------------- /apollo-configservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/pom.xml -------------------------------------------------------------------------------- /apollo-configservice/src/assembly/assembly-descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/assembly/assembly-descriptor.xml -------------------------------------------------------------------------------- /apollo-configservice/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/apollo-configservice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/apollo-configservice.conf -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application-consul-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application-consul-discovery.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application-database-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application-database-discovery.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application-github.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application-github.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application-kubernetes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application-kubernetes.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application-nacos-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application-nacos-discovery.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application-zookeeper-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application-zookeeper-discovery.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/application.yml -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/configservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/configservice.properties -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/jpa/configdb.init.h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/jpa/configdb.init.h2.sql -------------------------------------------------------------------------------- /apollo-configservice/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/resources/logback.xml -------------------------------------------------------------------------------- /apollo-configservice/src/main/scripts/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/scripts/shutdown.sh -------------------------------------------------------------------------------- /apollo-configservice/src/main/scripts/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/main/scripts/startup.sh -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/application.properties -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/application.yml -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/data.sql -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/import.sql -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/integration-test/cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/integration-test/cleanup.sql -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/integration-test/test-gray-release.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/integration-test/test-gray-release.sql -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/integration-test/test-release-message.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/integration-test/test-release-message.sql -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/integration-test/test-release.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/integration-test/test-release.sql -------------------------------------------------------------------------------- /apollo-configservice/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-configservice/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /apollo-portal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/pom.xml -------------------------------------------------------------------------------- /apollo-portal/src/assembly/assembly-descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/assembly/assembly-descriptor.xml -------------------------------------------------------------------------------- /apollo-portal/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/entity/Consumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/entity/Consumer.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/PortalApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/PortalApplication.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/api/API.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/api/API.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/constant/RoleType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/constant/RoleType.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/bo/Email.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/bo/Email.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/bo/ItemBO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/bo/ItemBO.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/po/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/po/Role.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/po/UserPO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/po/UserPO.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/vo/Change.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/vo/Change.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/vo/Number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/vo/Number.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/enums/ChangeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/enums/ChangeType.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/environment/Env.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/environment/Env.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/EmailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/EmailService.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/LogoutHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/LogoutHandler.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/MQService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/MQService.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/UserService.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/package-info.java -------------------------------------------------------------------------------- /apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/util/RoleUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/util/RoleUtils.java -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/apollo-env.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/apollo-env.properties -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/apollo-portal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/apollo-portal.conf -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/application-github.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/application-github.properties -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/application-ldap-activedirectory-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/application-ldap-activedirectory-sample.yml -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/application-ldap-apacheds-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/application-ldap-apacheds-sample.yml -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/application-ldap-openldap-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/application-ldap-openldap-sample.yml -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/application-oidc-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/application-oidc-sample.yml -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/application.properties -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/application.yml -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/jpa/portaldb.init.h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/jpa/portaldb.init.h2.sql -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/logback.xml -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/portal.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/portal.properties -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/app.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/app/access_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/app/access_key.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/app/manage_cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/app/manage_cluster.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/app/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/app/setting.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/audit_log_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/audit_log_menu.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/audit_log_trace_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/audit_log_trace_detail.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/cluster.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/cluster/ns_role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/cluster/ns_role.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/config.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/config/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/config/diff.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/config/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/config/history.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/config/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/config/sync.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/config_export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/config_export.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/default_sso_heartbeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/default_sso_heartbeat.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/delete_app_cluster_namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/delete_app_cluster_namespace.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/global_search_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/global_search_value.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/i18n/en.json -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/i18n/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/i18n/zh-CN.json -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/404.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/add.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/assign.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/branch.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/brush.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/cancel.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/change.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/comment.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/compare.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/config.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/copy.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/create.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/delete.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/diff.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/edit.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/env.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/export.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/github-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/github-fill.svg -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/github.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/gray.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/hide_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/hide_sidebar.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/import.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/info.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/language.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/like.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/logo-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/logo-detail.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/logo-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/logo-simple.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/machine.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/manage.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/merge.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/more.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/nodata.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/operate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/operate.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/plus-white.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/plus.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/question.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/refresh.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/release-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/release-all.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/release-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/release-history.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/release.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/rollback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/rollback.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/rule.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/secret.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/show_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/show_sidebar.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/submit.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/sync-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/sync-error.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/sync-succ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/sync-succ.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/sync.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/syntax.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/table.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/test.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/text.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/top.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/img/unlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/img/unlike.png -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/index.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/login.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/namespace.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/namespace/role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/namespace/role.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/open/add-consumer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/open/add-consumer.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/open/grant-permission-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/open/grant-permission-modal.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/open/manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/open/manage.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/AppUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/AppUtils.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/PageCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/PageCommon.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/app.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/AccessKeyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/AccessKeyController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/AppController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/AppController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/AuditLogMenuController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/AuditLogMenuController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/BackTopController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/BackTopController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/ClusterController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/ClusterController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/ConfigExportController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/ConfigExportController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/IndexController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/IndexController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/LoginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/LoginController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/NamespaceController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/NamespaceController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/ServerConfigController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/ServerConfigController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/SettingController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/SettingController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/SystemInfoController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/SystemInfoController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/controller/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/controller/UserController.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/directive/diff-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/directive/diff-directive.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/directive/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/directive/directive.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/directive/item-modal-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/directive/item-modal-directive.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/directive/release-modal-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/directive/release-modal-directive.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/AccessKeyService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/AccessKeyService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/AppService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/AppService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/AuditLogService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/AuditLogService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/ClusterService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/ClusterService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/CommitService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/CommitService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/CommonService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/CommonService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/ConfigService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/ConfigService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/ConsumerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/ConsumerService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/EnvService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/EnvService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/EventManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/EventManager.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/ExportService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/ExportService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/FavoriteService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/FavoriteService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/GlobalSearchValueService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/GlobalSearchValueService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/InstanceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/InstanceService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/NamespaceBranchService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/NamespaceBranchService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/NamespaceLockService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/NamespaceLockService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/NamespaceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/NamespaceService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/OrganizationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/OrganizationService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/PermissionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/PermissionService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/ReleaseHistoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/ReleaseHistoryService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/ReleaseService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/ReleaseService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/ServerConfigService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/ServerConfigService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/SystemInfoService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/SystemInfoService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/SystemRoleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/SystemRoleService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/services/UserService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/services/UserService.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/scripts/valdr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/scripts/valdr.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/server_config_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/server_config_manage.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/styles/audit-log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/styles/audit-log.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/styles/common-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/styles/common-style.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/system-role-manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/system-role-manage.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/system_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/system_info.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/user-manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/user-manage.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/angular-cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/angular-cookies.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/angular-resource.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/angular-route.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/angular-sanitize.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/angular-toastr-1.4.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/angular-toastr-1.4.1.min.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/angular-ui-router.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/angular-ui-router.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/angular.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/bootbox.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/loading-bar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/loading-bar.min.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/angular/loading-bar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/angular/loading-bar.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/clipboard.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/diff.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/diff.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/font-awesome.min.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.woff -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/iconfont/iconfont.woff2 -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/jquery.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/lodash.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/ace.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/mode-json.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/mode-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/mode-properties.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/mode-xml.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/mode-yaml.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/theme-eclipse.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/ui-ace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/ui-ace.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/worker-json.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/ui-ace/worker-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/ui-ace/worker-xml.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/valdr/valdr-message.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/valdr/valdr-message.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/valdr/valdr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/valdr/valdr.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/xml2json.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/xml2json.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/vendor/yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/vendor/yaml.min.js -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/common/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/common/footer.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/common/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/common/nav.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/back-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/back-top.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/confirm-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/confirm-dialog.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/diff.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/entrance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/entrance.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/env-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/env-selector.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/item-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/item-modal.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/namespace-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/namespace-panel.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/publish-deny-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/publish-deny-modal.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/release-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/release-modal.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/rollback-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/rollback-modal.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/show-text-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/show-text-modal.html -------------------------------------------------------------------------------- /apollo-portal/src/main/resources/static/views/component/user-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/resources/static/views/component/user-selector.html -------------------------------------------------------------------------------- /apollo-portal/src/main/scripts/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/scripts/shutdown.sh -------------------------------------------------------------------------------- /apollo-portal/src/main/scripts/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/main/scripts/startup.sh -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/application.properties -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/application.yml -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/import.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/appnamespaceservice/init-appnamespace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/appnamespaceservice/init-appnamespace.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/cleanup.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/favorites/favorites.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/favorites/favorites.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/permission/insert-test-consumerroles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/permission/insert-test-consumerroles.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/permission/insert-test-permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/permission/insert-test-permissions.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/permission/insert-test-rolepermissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/permission/insert-test-rolepermissions.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/permission/insert-test-roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/permission/insert-test-roles.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/sql/permission/insert-test-userroles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/sql/permission/insert-test-userroles.sql -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/yaml/case1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/yaml/case1.yaml -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/yaml/case2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/yaml/case2.yaml -------------------------------------------------------------------------------- /apollo-portal/src/test/resources/yaml/case3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/apollo-portal/src/test/resources/yaml/case3.yaml -------------------------------------------------------------------------------- /changes/changes-1.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-1.9.0.md -------------------------------------------------------------------------------- /changes/changes-1.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-1.9.1.md -------------------------------------------------------------------------------- /changes/changes-1.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-1.9.2.md -------------------------------------------------------------------------------- /changes/changes-2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-2.0.0.md -------------------------------------------------------------------------------- /changes/changes-2.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-2.0.1.md -------------------------------------------------------------------------------- /changes/changes-2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-2.1.0.md -------------------------------------------------------------------------------- /changes/changes-2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-2.2.0.md -------------------------------------------------------------------------------- /changes/changes-2.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-2.3.0.md -------------------------------------------------------------------------------- /changes/changes-2.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/changes/changes-2.4.0.md -------------------------------------------------------------------------------- /doc/images/add-item-in-new-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/add-item-in-new-namespace.png -------------------------------------------------------------------------------- /doc/images/apollo-client-maven-artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-client-maven-artifacts.png -------------------------------------------------------------------------------- /doc/images/apollo-client-monitor-jmx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-client-monitor-jmx.jpg -------------------------------------------------------------------------------- /doc/images/apollo-client-monitor-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-client-monitor-prometheus.png -------------------------------------------------------------------------------- /doc/images/apollo-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-deployment.png -------------------------------------------------------------------------------- /doc/images/apollo-erd-role-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-erd-role-permission.png -------------------------------------------------------------------------------- /doc/images/apollo-erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-erd.png -------------------------------------------------------------------------------- /doc/images/apollo-home-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-home-screenshot.jpg -------------------------------------------------------------------------------- /doc/images/apollo-home-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-home-screenshot.png -------------------------------------------------------------------------------- /doc/images/apollo-net-apollo-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-net-apollo-cluster.png -------------------------------------------------------------------------------- /doc/images/apollo-net-app-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-net-app-config.png -------------------------------------------------------------------------------- /doc/images/apollo-net-config-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-net-config-cache.png -------------------------------------------------------------------------------- /doc/images/apollo-net-server-url-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-net-server-url-config.png -------------------------------------------------------------------------------- /doc/images/apollo-open-manage-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-open-manage-list.png -------------------------------------------------------------------------------- /doc/images/apollo-open-manage-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-open-manage-token.png -------------------------------------------------------------------------------- /doc/images/apollo-open-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/apollo-open-manage.png -------------------------------------------------------------------------------- /doc/images/app-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/app-created.png -------------------------------------------------------------------------------- /doc/images/app-id-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/app-id-location.png -------------------------------------------------------------------------------- /doc/images/app-permission-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/app-permission-entry.png -------------------------------------------------------------------------------- /doc/images/app-permission-search-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/app-permission-search-user.png -------------------------------------------------------------------------------- /doc/images/app-permission-user-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/app-permission-user-added.png -------------------------------------------------------------------------------- /doc/images/app-permssion-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/app-permssion-entry.png -------------------------------------------------------------------------------- /doc/images/application-config-precedence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/application-config-precedence.png -------------------------------------------------------------------------------- /doc/images/basic-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/basic-architecture.png -------------------------------------------------------------------------------- /doc/images/client-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/client-architecture.png -------------------------------------------------------------------------------- /doc/images/client-local-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/client-local-cache.png -------------------------------------------------------------------------------- /doc/images/cluster-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/cluster-created.png -------------------------------------------------------------------------------- /doc/images/configure-view-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/configure-view-permissions.png -------------------------------------------------------------------------------- /doc/images/create-app-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-app-entry.png -------------------------------------------------------------------------------- /doc/images/create-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-app.png -------------------------------------------------------------------------------- /doc/images/create-cluster-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-cluster-detail.png -------------------------------------------------------------------------------- /doc/images/create-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-cluster.png -------------------------------------------------------------------------------- /doc/images/create-item-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-item-detail.png -------------------------------------------------------------------------------- /doc/images/create-item-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-item-entry.png -------------------------------------------------------------------------------- /doc/images/create-namespace-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-namespace-detail.png -------------------------------------------------------------------------------- /doc/images/create-namespace-select-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-namespace-select-type.png -------------------------------------------------------------------------------- /doc/images/create-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/create-namespace.png -------------------------------------------------------------------------------- /doc/images/delete-app-cluster-namespace-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/delete-app-cluster-namespace-detail.png -------------------------------------------------------------------------------- /doc/images/delete-app-cluster-namespace-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/delete-app-cluster-namespace-entry.png -------------------------------------------------------------------------------- /doc/images/edit-item-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/edit-item-entry.png -------------------------------------------------------------------------------- /doc/images/edit-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/edit-item.png -------------------------------------------------------------------------------- /doc/images/email-template-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/email-template-release.png -------------------------------------------------------------------------------- /doc/images/email-template-rollback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/email-template-rollback.png -------------------------------------------------------------------------------- /doc/images/environment-remote-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/environment-remote-source.png -------------------------------------------------------------------------------- /doc/images/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/environment.png -------------------------------------------------------------------------------- /doc/images/gray-release/abandon-gray-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/abandon-gray-release.png -------------------------------------------------------------------------------- /doc/images/gray-release/click-gray-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/click-gray-release.png -------------------------------------------------------------------------------- /doc/images/gray-release/create-gray-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/create-gray-release.png -------------------------------------------------------------------------------- /doc/images/gray-release/edit-gray-release-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/edit-gray-release-config.png -------------------------------------------------------------------------------- /doc/images/gray-release/full-release-confirm-dialog-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/full-release-confirm-dialog-2.png -------------------------------------------------------------------------------- /doc/images/gray-release/full-release-confirm-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/full-release-confirm-dialog.png -------------------------------------------------------------------------------- /doc/images/gray-release/gray-release-config-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/gray-release-config-submitted.png -------------------------------------------------------------------------------- /doc/images/gray-release/gray-release-confirm-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/gray-release-confirm-dialog.png -------------------------------------------------------------------------------- /doc/images/gray-release/gray-release-diff-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/gray-release-diff-items.png -------------------------------------------------------------------------------- /doc/images/gray-release/gray-release-instance-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/gray-release-instance-list.png -------------------------------------------------------------------------------- /doc/images/gray-release/gray-release-ip-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/gray-release-ip-selected.png -------------------------------------------------------------------------------- /doc/images/gray-release/gray-release-rule-saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/gray-release-rule-saved.png -------------------------------------------------------------------------------- /doc/images/gray-release/initial-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/initial-config.png -------------------------------------------------------------------------------- /doc/images/gray-release/initial-gray-release-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/initial-gray-release-tab.png -------------------------------------------------------------------------------- /doc/images/gray-release/initial-instance-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/initial-instance-list.png -------------------------------------------------------------------------------- /doc/images/gray-release/manual-input-gray-release-ip-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/manual-input-gray-release-ip-2.png -------------------------------------------------------------------------------- /doc/images/gray-release/manual-input-gray-release-ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/manual-input-gray-release-ip.png -------------------------------------------------------------------------------- /doc/images/gray-release/manual-input-gray-release-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/manual-input-gray-release-label.png -------------------------------------------------------------------------------- /doc/images/gray-release/manual-input-gray-release-label2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/manual-input-gray-release-label2.png -------------------------------------------------------------------------------- /doc/images/gray-release/master-branch-instance-list-after-full-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/master-branch-instance-list-after-full-release.png -------------------------------------------------------------------------------- /doc/images/gray-release/master-branch-instance-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/master-branch-instance-list.png -------------------------------------------------------------------------------- /doc/images/gray-release/new-gray-release-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/new-gray-release-rule.png -------------------------------------------------------------------------------- /doc/images/gray-release/prepare-to-do-gray-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/prepare-to-do-gray-release.png -------------------------------------------------------------------------------- /doc/images/gray-release/prepare-to-full-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/prepare-to-full-release.png -------------------------------------------------------------------------------- /doc/images/gray-release/select-gray-release-ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/select-gray-release-ip.png -------------------------------------------------------------------------------- /doc/images/gray-release/submit-gray-release-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/submit-gray-release-config.png -------------------------------------------------------------------------------- /doc/images/gray-release/view-release-history-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/view-release-history-detail.png -------------------------------------------------------------------------------- /doc/images/gray-release/view-release-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/gray-release/view-release-history.png -------------------------------------------------------------------------------- /doc/images/hermes-portal-publish-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/hermes-portal-publish-detail.png -------------------------------------------------------------------------------- /doc/images/hermes-portal-publish-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/hermes-portal-publish-entry.png -------------------------------------------------------------------------------- /doc/images/item-created-in-new-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/item-created-in-new-namespace.png -------------------------------------------------------------------------------- /doc/images/item-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/item-created.png -------------------------------------------------------------------------------- /doc/images/item-num-limit-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/item-num-limit-enabled.png -------------------------------------------------------------------------------- /doc/images/item-num-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/item-num-limit.png -------------------------------------------------------------------------------- /doc/images/link-namespace-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/link-namespace-detail.png -------------------------------------------------------------------------------- /doc/images/link-public-namespace-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/link-public-namespace-entry.png -------------------------------------------------------------------------------- /doc/images/link-public-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/link-public-namespace.png -------------------------------------------------------------------------------- /doc/images/local-development/ApolloApplication-Mysql-VM-Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ApolloApplication-Mysql-VM-Options.png -------------------------------------------------------------------------------- /doc/images/local-development/ApolloApplication-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ApolloApplication-Overview.png -------------------------------------------------------------------------------- /doc/images/local-development/ApolloApplication-Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ApolloApplication-Run.png -------------------------------------------------------------------------------- /doc/images/local-development/ApolloApplication-VM-Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ApolloApplication-VM-Options.png -------------------------------------------------------------------------------- /doc/images/local-development/ConfigAdminApplication-Eureka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ConfigAdminApplication-Eureka.png -------------------------------------------------------------------------------- /doc/images/local-development/ConfigAdminApplication-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ConfigAdminApplication-Overview.png -------------------------------------------------------------------------------- /doc/images/local-development/ConfigAdminApplication-Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ConfigAdminApplication-Run.png -------------------------------------------------------------------------------- /doc/images/local-development/ConfigAdminApplication-VM-Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/ConfigAdminApplication-VM-Options.png -------------------------------------------------------------------------------- /doc/images/local-development/NewConfiguration-Application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/NewConfiguration-Application.png -------------------------------------------------------------------------------- /doc/images/local-development/PortalApplication-Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/PortalApplication-Home.png -------------------------------------------------------------------------------- /doc/images/local-development/PortalApplication-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/PortalApplication-Overview.png -------------------------------------------------------------------------------- /doc/images/local-development/PortalApplication-Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/PortalApplication-Run.png -------------------------------------------------------------------------------- /doc/images/local-development/PortalApplication-VM-Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/PortalApplication-VM-Options.png -------------------------------------------------------------------------------- /doc/images/local-development/apollo-demo-app-properties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/apollo-demo-app-properties.jpg -------------------------------------------------------------------------------- /doc/images/local-development/apollo-demo-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/apollo-demo-overview.jpg -------------------------------------------------------------------------------- /doc/images/local-development/apollo-demo-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/apollo-demo-run.png -------------------------------------------------------------------------------- /doc/images/local-development/apollo-demo-vm-options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/apollo-demo-vm-options.jpg -------------------------------------------------------------------------------- /doc/images/local-development/create-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/create-release.png -------------------------------------------------------------------------------- /doc/images/local-development/fill-release-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/fill-release-form.png -------------------------------------------------------------------------------- /doc/images/local-development/publish-docker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/publish-docker.jpg -------------------------------------------------------------------------------- /doc/images/local-development/publish-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/publish-sdk.png -------------------------------------------------------------------------------- /doc/images/local-development/push-images-to-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/local-development/push-images-to-hub.png -------------------------------------------------------------------------------- /doc/images/logo/logo-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-detail.png -------------------------------------------------------------------------------- /doc/images/logo/logo-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-detail@2x.png -------------------------------------------------------------------------------- /doc/images/logo/logo-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-img.png -------------------------------------------------------------------------------- /doc/images/logo/logo-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-simple.png -------------------------------------------------------------------------------- /doc/images/logo/logo-simple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-simple@2x.png -------------------------------------------------------------------------------- /doc/images/logo/logo-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-stack.png -------------------------------------------------------------------------------- /doc/images/logo/logo-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-stack.svg -------------------------------------------------------------------------------- /doc/images/logo/logo-stack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo-stack@2x.png -------------------------------------------------------------------------------- /doc/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo.png -------------------------------------------------------------------------------- /doc/images/logo/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/logo/logo@2x.png -------------------------------------------------------------------------------- /doc/images/lyliyongblue-apollo-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/lyliyongblue-apollo-deployment.png -------------------------------------------------------------------------------- /doc/images/manage-cluster-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/manage-cluster-entry.png -------------------------------------------------------------------------------- /doc/images/module-dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/module-dependency.png -------------------------------------------------------------------------------- /doc/images/namespace-model-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/namespace-model-example.png -------------------------------------------------------------------------------- /doc/images/namespace-num-limit-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/namespace-num-limit-enabled.png -------------------------------------------------------------------------------- /doc/images/namespace-num-limit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/namespace-num-limit-white.png -------------------------------------------------------------------------------- /doc/images/namespace-num-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/namespace-num-limit.png -------------------------------------------------------------------------------- /doc/images/namespace-permission-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/namespace-permission-edit.png -------------------------------------------------------------------------------- /doc/images/namespace-permission-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/namespace-permission-entry.png -------------------------------------------------------------------------------- /doc/images/namespace-publish-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/namespace-publish-permission.png -------------------------------------------------------------------------------- /doc/images/ns-permission-app-allns-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/ns-permission-app-allns-entry.png -------------------------------------------------------------------------------- /doc/images/ns-permission-app-allns-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/ns-permission-app-allns-select.png -------------------------------------------------------------------------------- /doc/images/ns-permission-app-env-cluster-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/ns-permission-app-env-cluster-edit.png -------------------------------------------------------------------------------- /doc/images/ns-permission-app-env-cluster-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/ns-permission-app-env-cluster-entry.png -------------------------------------------------------------------------------- /doc/images/ns-permission-app-env-ns-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/ns-permission-app-env-ns-select.png -------------------------------------------------------------------------------- /doc/images/overall-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/overall-architecture.png -------------------------------------------------------------------------------- /doc/images/override-public-namespace-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/override-public-namespace-entry.png -------------------------------------------------------------------------------- /doc/images/override-public-namespace-item-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/override-public-namespace-item-done.png -------------------------------------------------------------------------------- /doc/images/override-public-namespace-item-publish-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/override-public-namespace-item-publish-entry.png -------------------------------------------------------------------------------- /doc/images/override-public-namespace-item-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/override-public-namespace-item-publish.png -------------------------------------------------------------------------------- /doc/images/override-public-namespace-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/override-public-namespace-item.png -------------------------------------------------------------------------------- /doc/images/public-namespace-config-precedence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/public-namespace-config-precedence.png -------------------------------------------------------------------------------- /doc/images/public-namespace-edit-item-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/public-namespace-edit-item-entry.png -------------------------------------------------------------------------------- /doc/images/public-namespace-edit-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/public-namespace-edit-item.png -------------------------------------------------------------------------------- /doc/images/public-namespace-item-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/public-namespace-item-created.png -------------------------------------------------------------------------------- /doc/images/public-namespace-publish-items-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/public-namespace-publish-items-entry.png -------------------------------------------------------------------------------- /doc/images/public-namespace-publish-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/public-namespace-publish-items.png -------------------------------------------------------------------------------- /doc/images/publish-items-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/publish-items-entry.png -------------------------------------------------------------------------------- /doc/images/publish-items-in-new-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/publish-items-in-new-namespace.png -------------------------------------------------------------------------------- /doc/images/publish-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/publish-items.png -------------------------------------------------------------------------------- /doc/images/release-message-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/release-message-design.png -------------------------------------------------------------------------------- /doc/images/release-message-notification-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/release-message-notification-design.png -------------------------------------------------------------------------------- /doc/images/tech-support-qq-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/tech-support-qq-1.png -------------------------------------------------------------------------------- /doc/images/tech-support-qq-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/tech-support-qq-2.png -------------------------------------------------------------------------------- /doc/images/tech-support-qq-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/tech-support-qq-3.png -------------------------------------------------------------------------------- /doc/images/tech-support-qq-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/tech-support-qq-4.png -------------------------------------------------------------------------------- /doc/images/tech-support-qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/tech-support-qq.png -------------------------------------------------------------------------------- /doc/images/text-mode-config-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/text-mode-config-entry.png -------------------------------------------------------------------------------- /doc/images/text-mode-config-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/text-mode-config-overview.png -------------------------------------------------------------------------------- /doc/images/text-mode-config-submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/text-mode-config-submit.png -------------------------------------------------------------------------------- /doc/images/text-mode-spring-boot-config-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/doc/images/text-mode-spring-boot-config-sample.png -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | www.apolloconfig.com -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.1.0.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.1.1.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.1.2.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.2.0.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.2.1.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.2.2.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.3.0.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-portal-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-portal-0.3.1.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.1.0.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.1.1.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.1.2.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.2.0.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.2.1.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.2.2.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.3.0.tgz -------------------------------------------------------------------------------- /docs/charts/apollo-service-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/apollo-service-0.3.1.tgz -------------------------------------------------------------------------------- /docs/charts/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/charts/index.yaml -------------------------------------------------------------------------------- /docs/css/buble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/css/buble.css -------------------------------------------------------------------------------- /docs/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/css/dark.css -------------------------------------------------------------------------------- /docs/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/css/fonts.css -------------------------------------------------------------------------------- /docs/css/pure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/css/pure.css -------------------------------------------------------------------------------- /docs/css/vue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/css/vue.css -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/en/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/_navbar.md -------------------------------------------------------------------------------- /docs/en/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/_sidebar.md -------------------------------------------------------------------------------- /docs/en/client/c-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/c-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/cpp-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/cpp-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/dotnet-sdk-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/dotnet-sdk-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/golang-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/golang-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/java-sdk-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/java-sdk-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/k8s-configmap-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/k8s-configmap-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/nodejs-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/nodejs-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/other-language-client-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/other-language-client-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/php-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/php-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/python-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/python-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/en/client/rust-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/client/rust-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/en/community/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/community/team.md -------------------------------------------------------------------------------- /docs/en/community/thank-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/community/thank-you.md -------------------------------------------------------------------------------- /docs/en/contribution/apollo-development-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/contribution/apollo-development-guide.md -------------------------------------------------------------------------------- /docs/en/contribution/apollo-release-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/contribution/apollo-release-guide.md -------------------------------------------------------------------------------- /docs/en/deployment/deployment-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/deployment/deployment-architecture.md -------------------------------------------------------------------------------- /docs/en/deployment/distributed-deployment-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/deployment/distributed-deployment-guide.md -------------------------------------------------------------------------------- /docs/en/deployment/quick-start-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/deployment/quick-start-docker.md -------------------------------------------------------------------------------- /docs/en/deployment/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/deployment/quick-start.md -------------------------------------------------------------------------------- /docs/en/deployment/third-party-tool-btpanel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/deployment/third-party-tool-btpanel.md -------------------------------------------------------------------------------- /docs/en/deployment/third-party-tool-rainbond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/deployment/third-party-tool-rainbond.md -------------------------------------------------------------------------------- /docs/en/design/apollo-core-concept-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/design/apollo-core-concept-namespace.md -------------------------------------------------------------------------------- /docs/en/design/apollo-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/design/apollo-design.md -------------------------------------------------------------------------------- /docs/en/design/apollo-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/design/apollo-introduction.md -------------------------------------------------------------------------------- /docs/en/extension/portal-how-to-enable-email-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/extension/portal-how-to-enable-email-service.md -------------------------------------------------------------------------------- /docs/en/extension/portal-how-to-enable-session-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/extension/portal-how-to-enable-session-store.md -------------------------------------------------------------------------------- /docs/en/extension/portal-how-to-enable-webhook-notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/extension/portal-how-to-enable-webhook-notification.md -------------------------------------------------------------------------------- /docs/en/extension/portal-how-to-implement-user-login-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/extension/portal-how-to-implement-user-login-function.md -------------------------------------------------------------------------------- /docs/en/faq/common-issues-in-deployment-and-development-phase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/faq/common-issues-in-deployment-and-development-phase.md -------------------------------------------------------------------------------- /docs/en/faq/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/faq/faq.md -------------------------------------------------------------------------------- /docs/en/images/Configuration query-Non properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/Configuration query-Non properties.png -------------------------------------------------------------------------------- /docs/en/images/Configuration query-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/Configuration query-properties.png -------------------------------------------------------------------------------- /docs/en/images/System-parameterization-of-global-search-configuration-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/System-parameterization-of-global-search-configuration-items.png -------------------------------------------------------------------------------- /docs/en/images/apollo-home-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/apollo-home-screenshot.jpg -------------------------------------------------------------------------------- /docs/en/images/community/ctrip.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/community/ctrip.jpeg -------------------------------------------------------------------------------- /docs/en/images/community/docsify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/community/docsify.svg -------------------------------------------------------------------------------- /docs/en/images/community/intellij-idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/community/intellij-idea.svg -------------------------------------------------------------------------------- /docs/en/images/community/jetbrains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/community/jetbrains.svg -------------------------------------------------------------------------------- /docs/en/images/community/jprofiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/community/jprofiler.png -------------------------------------------------------------------------------- /docs/en/images/deployment/btpanel/addApollo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/deployment/btpanel/addApollo.png -------------------------------------------------------------------------------- /docs/en/images/deployment/btpanel/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/deployment/btpanel/console.png -------------------------------------------------------------------------------- /docs/en/images/deployment/btpanel/install-Apollo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/deployment/btpanel/install-Apollo.png -------------------------------------------------------------------------------- /docs/en/images/deployment/btpanel/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/deployment/btpanel/install.png -------------------------------------------------------------------------------- /docs/en/images/deployment/btpanel/install2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/images/deployment/btpanel/install2.png -------------------------------------------------------------------------------- /docs/en/misc/apollo-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/misc/apollo-benchmark.md -------------------------------------------------------------------------------- /docs/en/portal/apollo-open-api-platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/portal/apollo-open-api-platform.md -------------------------------------------------------------------------------- /docs/en/portal/apollo-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/portal/apollo-user-guide.md -------------------------------------------------------------------------------- /docs/en/portal/apollo-user-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/portal/apollo-user-practices.md -------------------------------------------------------------------------------- /docs/en/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/en/quick-start.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/scripts/multiple-language-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/scripts/multiple-language-redirect.js -------------------------------------------------------------------------------- /docs/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/README.md -------------------------------------------------------------------------------- /docs/zh/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/_navbar.md -------------------------------------------------------------------------------- /docs/zh/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/_sidebar.md -------------------------------------------------------------------------------- /docs/zh/client/c-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/c-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/cpp-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/cpp-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/dotnet-sdk-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/dotnet-sdk-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/golang-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/golang-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/java-sdk-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/java-sdk-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/k8s-configmap-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/k8s-configmap-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/nodejs-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/nodejs-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/other-language-client-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/other-language-client-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/php-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/php-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/python-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/python-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/zh/client/rust-sdks-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/client/rust-sdks-user-guide.md -------------------------------------------------------------------------------- /docs/zh/community/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/community/team.md -------------------------------------------------------------------------------- /docs/zh/community/thank-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/community/thank-you.md -------------------------------------------------------------------------------- /docs/zh/contribution/apollo-development-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/contribution/apollo-development-guide.md -------------------------------------------------------------------------------- /docs/zh/contribution/apollo-release-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/contribution/apollo-release-guide.md -------------------------------------------------------------------------------- /docs/zh/deployment/deployment-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/deployment/deployment-architecture.md -------------------------------------------------------------------------------- /docs/zh/deployment/distributed-deployment-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/deployment/distributed-deployment-guide.md -------------------------------------------------------------------------------- /docs/zh/deployment/quick-start-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/deployment/quick-start-docker.md -------------------------------------------------------------------------------- /docs/zh/deployment/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/deployment/quick-start.md -------------------------------------------------------------------------------- /docs/zh/deployment/third-party-tool-btpanel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/deployment/third-party-tool-btpanel.md -------------------------------------------------------------------------------- /docs/zh/deployment/third-party-tool-rainbond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/deployment/third-party-tool-rainbond.md -------------------------------------------------------------------------------- /docs/zh/design/apollo-core-concept-namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/design/apollo-core-concept-namespace.md -------------------------------------------------------------------------------- /docs/zh/design/apollo-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/design/apollo-design.md -------------------------------------------------------------------------------- /docs/zh/design/apollo-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/design/apollo-introduction.md -------------------------------------------------------------------------------- /docs/zh/extension/portal-how-to-enable-email-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/extension/portal-how-to-enable-email-service.md -------------------------------------------------------------------------------- /docs/zh/extension/portal-how-to-enable-session-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/extension/portal-how-to-enable-session-store.md -------------------------------------------------------------------------------- /docs/zh/extension/portal-how-to-enable-webhook-notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/extension/portal-how-to-enable-webhook-notification.md -------------------------------------------------------------------------------- /docs/zh/extension/portal-how-to-implement-user-login-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/extension/portal-how-to-implement-user-login-function.md -------------------------------------------------------------------------------- /docs/zh/faq/common-issues-in-deployment-and-development-phase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/faq/common-issues-in-deployment-and-development-phase.md -------------------------------------------------------------------------------- /docs/zh/faq/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/faq/faq.md -------------------------------------------------------------------------------- /docs/zh/images/Configuration query-Non properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/Configuration query-Non properties.png -------------------------------------------------------------------------------- /docs/zh/images/Configuration query-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/Configuration query-properties.png -------------------------------------------------------------------------------- /docs/zh/images/System-parameterization-of-global-search-configuration-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/System-parameterization-of-global-search-configuration-items.png -------------------------------------------------------------------------------- /docs/zh/images/community/ctrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/community/ctrip.png -------------------------------------------------------------------------------- /docs/zh/images/deployment/btpanel/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/deployment/btpanel/console.png -------------------------------------------------------------------------------- /docs/zh/images/deployment/btpanel/docker-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/deployment/btpanel/docker-menu.png -------------------------------------------------------------------------------- /docs/zh/images/deployment/btpanel/install-docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/deployment/btpanel/install-docker.png -------------------------------------------------------------------------------- /docs/zh/images/deployment/btpanel/search-apollo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/images/deployment/btpanel/search-apollo.png -------------------------------------------------------------------------------- /docs/zh/misc/apollo-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/misc/apollo-benchmark.md -------------------------------------------------------------------------------- /docs/zh/portal/apollo-open-api-platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/portal/apollo-open-api-platform.md -------------------------------------------------------------------------------- /docs/zh/portal/apollo-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/portal/apollo-user-guide.md -------------------------------------------------------------------------------- /docs/zh/portal/apollo-user-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/docs/zh/portal/apollo-user-practices.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/build.bat -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/openapi/bash/openapi-usage-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/openapi/bash/openapi-usage-example.sh -------------------------------------------------------------------------------- /scripts/openapi/bash/openapi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/openapi/bash/openapi.sh -------------------------------------------------------------------------------- /scripts/sql/profiles/h2-default/apolloconfigdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/h2-default/apolloconfigdb.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/h2-default/apolloportaldb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/h2-default/apolloportaldb.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/h2-default/delta/v220-v230/apolloconfigdb-v220-v230.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/h2-default/delta/v220-v230/apolloconfigdb-v220-v230.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/h2-default/delta/v220-v230/apolloportaldb-v220-v230.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/h2-default/delta/v220-v230/apolloportaldb-v220-v230.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/h2-default/delta/v230-v240/apolloportaldb-v230-v240.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/h2-default/delta/v230-v240/apolloportaldb-v230-v240.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-database-not-specified/apolloportaldb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-database-not-specified/apolloportaldb.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/apolloconfigdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/apolloconfigdb.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/apolloportaldb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/apolloportaldb.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v040-v050/apolloconfigdb-v040-v050.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v040-v050/apolloconfigdb-v040-v050.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v040-v050/apolloportaldb-v040-v050.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v040-v050/apolloportaldb-v040-v050.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v060-v062/apolloconfigdb-v060-v062.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v060-v062/apolloconfigdb-v060-v062.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v060-v062/apolloportaldb-v060-v062.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v060-v062/apolloportaldb-v060-v062.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v080-v090/apolloportaldb-v080-v090.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v080-v090/apolloportaldb-v080-v090.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v151-v160/apolloconfigdb-v151-v160.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v151-v160/apolloconfigdb-v151-v160.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v170-v180/apolloconfigdb-v170-v180.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v170-v180/apolloconfigdb-v170-v180.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v170-v180/apolloportaldb-v170-v180.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v170-v180/apolloportaldb-v170-v180.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v180-v190/apolloconfigdb-v180-v190.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v180-v190/apolloconfigdb-v180-v190.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v180-v190/apolloportaldb-v180-v190.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v180-v190/apolloportaldb-v180-v190.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v190-v200/apolloconfigdb-v190-v200.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v190-v200/apolloconfigdb-v190-v200.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v190-v200/apolloportaldb-v190-v200.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v190-v200/apolloportaldb-v190-v200.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v200-v210/apolloconfigdb-v200-v210.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v200-v210/apolloconfigdb-v200-v210.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v210-v220/apolloconfigdb-v210-v220.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v210-v220/apolloconfigdb-v210-v220.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v210-v220/apolloportaldb-v210-v220.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v210-v220/apolloportaldb-v210-v220.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v220-v230/apolloconfigdb-v220-v230.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v220-v230/apolloconfigdb-v220-v230.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v220-v230/apolloportaldb-v220-v230.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v220-v230/apolloportaldb-v220-v230.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql -------------------------------------------------------------------------------- /scripts/sql/profiles/mysql-default/delta/v230-v240/apolloportaldb-v230-v240.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/profiles/mysql-default/delta/v230-v240/apolloportaldb-v230-v240.sql -------------------------------------------------------------------------------- /scripts/sql/src/apolloconfigdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/apolloconfigdb.sql -------------------------------------------------------------------------------- /scripts/sql/src/apolloportaldb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/apolloportaldb.sql -------------------------------------------------------------------------------- /scripts/sql/src/delta/v220-v230/apolloconfigdb-v220-v230.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/delta/v220-v230/apolloconfigdb-v220-v230.sql -------------------------------------------------------------------------------- /scripts/sql/src/delta/v220-v230/apolloportaldb-v220-v230.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/delta/v220-v230/apolloportaldb-v220-v230.sql -------------------------------------------------------------------------------- /scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql -------------------------------------------------------------------------------- /scripts/sql/src/delta/v230-v240/apolloportaldb-v230-v240.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/delta/v230-v240/apolloportaldb-v230-v240.sql -------------------------------------------------------------------------------- /scripts/sql/src/gist/autoGeneratedDeclaration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/gist/autoGeneratedDeclaration.sql -------------------------------------------------------------------------------- /scripts/sql/src/gist/h2Function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/gist/h2Function.sql -------------------------------------------------------------------------------- /scripts/sql/src/gist/setupDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/gist/setupDatabase.sql -------------------------------------------------------------------------------- /scripts/sql/src/gist/useDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apolloconfig/apollo/HEAD/scripts/sql/src/gist/useDatabase.sql --------------------------------------------------------------------------------