├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .ike-prow └── test-keeper.yml ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── CODE_OF_CONDUCT.md ├── COMMIT_MSG.md ├── CONTRIBUTING.md ├── Dockerfile.build ├── Dockerfile.deploy ├── Dockerfile.deploy.rhel ├── LICENSE ├── README.md ├── RELEASE.adoc ├── base-test ├── pom.xml └── src │ └── main │ ├── java │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── base │ │ └── test │ │ ├── EnvironmentVariableController.java │ │ ├── hoverfly │ │ ├── LauncherHoverflyEnvironment.java │ │ ├── LauncherHoverflyRuleConfigurer.java │ │ └── LauncherPerTestHoverflyRule.java │ │ └── identity │ │ └── TokenFixtures.java │ └── resources │ └── hoverfly │ ├── empty-descriptor.json │ └── hoverfly.jks ├── base ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── fabric8 │ │ │ └── launcher │ │ │ └── base │ │ │ ├── EnvironmentEnum.java │ │ │ ├── EnvironmentSupport.java │ │ │ ├── JsonUtils.java │ │ │ ├── Paths.java │ │ │ ├── PosixFilePermissionSupport.java │ │ │ ├── YamlUtils.java │ │ │ ├── http │ │ │ ├── AuthorizationType.java │ │ │ ├── Authorizations.java │ │ │ ├── HttpClient.java │ │ │ ├── HttpException.java │ │ │ ├── HttpExceptionMapper.java │ │ │ └── Requests.java │ │ │ └── identity │ │ │ ├── Identity.java │ │ │ ├── IdentityVisitor.java │ │ │ ├── RSAPublicKeyConverter.java │ │ │ ├── TokenIdentity.java │ │ │ └── UserPasswordIdentity.java │ └── resources │ │ └── META-INF │ │ └── beans.xml │ └── test │ ├── java │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── base │ │ ├── EnvironmentEnumTest.java │ │ ├── EnvironmentSupportTest.java │ │ ├── JsonUtilsTest.java │ │ ├── PathsTest.java │ │ ├── PosixFilePermissionSupportTest.java │ │ ├── YamlUtilsTest.java │ │ ├── http │ │ ├── AuthorizationsTest.java │ │ └── HttpClientTest.java │ │ └── identity │ │ ├── IdentityTest.java │ │ └── IdentityVisitorTest.java │ └── resources │ ├── hoverfly │ └── httpclienttest │ │ ├── should_execute_and_fail_correctly.json │ │ ├── should_execute_and_parse_json_handle_errors_with_details_correctly.json │ │ ├── should_execute_and_parse_json_handle_errors_with_details_correctly_async.json │ │ ├── should_execute_correctly.json │ │ ├── should_post_and_handle_errors_correctly.json │ │ ├── should_post_and_handle_errors_correctly_async.json │ │ ├── should_post_and_parse_correctly.json │ │ ├── should_post_and_parse_correctly_async.json │ │ ├── should_read_json_correctly.json │ │ ├── should_read_json_correctly_async.json │ │ ├── should_return_empty_when_not_found_using_parse_json_correctly.json │ │ ├── should_return_empty_when_not_found_using_parse_json_correctly_async.json │ │ ├── should_return_empty_when_parse_json_returns_null_correctly.json │ │ ├── should_return_empty_when_parse_json_returns_null_correctly_async.json │ │ ├── should_throw_exception_with_details_when_an_error_occurs.json │ │ └── should_throw_exception_with_details_when_an_error_occurs_async.json │ └── io │ └── fabric8 │ └── launcher │ └── base │ └── pathtest.zip ├── checkstyle.xml ├── cico_build_deploy.sh ├── clusters.yaml ├── core ├── core-api │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── fabric8 │ │ │ │ └── launcher │ │ │ │ └── core │ │ │ │ ├── api │ │ │ │ ├── AsyncBoom.java │ │ │ │ ├── Boom.java │ │ │ │ ├── DefaultMissionControl.java │ │ │ │ ├── MissionControl.java │ │ │ │ ├── Projectile.java │ │ │ │ ├── ProjectileContext.java │ │ │ │ ├── catalog │ │ │ │ │ └── BoosterCatalogFactory.java │ │ │ │ ├── documentation │ │ │ │ │ ├── BoosterDocumentationStore.java │ │ │ │ │ └── BoosterReadmeProcessor.java │ │ │ │ ├── events │ │ │ │ │ ├── LauncherStatusEventKind.java │ │ │ │ │ ├── StatusEventKind.java │ │ │ │ │ ├── StatusMessageEvent.java │ │ │ │ │ └── StatusMessageEventBroker.java │ │ │ │ ├── projectiles │ │ │ │ │ ├── CreateProjectile.java │ │ │ │ │ ├── LauncherCreateProjectile.java │ │ │ │ │ └── context │ │ │ │ │ │ ├── BoosterCapable.java │ │ │ │ │ │ ├── CoordinateCapable.java │ │ │ │ │ │ ├── CreateProjectileContext.java │ │ │ │ │ │ ├── CreatorImportLaunchProjectileContext.java │ │ │ │ │ │ ├── CreatorLaunchProjectileContext.java │ │ │ │ │ │ ├── CreatorLaunchingProjectileContext.java │ │ │ │ │ │ ├── CreatorZipProjectileContext.java │ │ │ │ │ │ ├── DownloadZipProjectileContext.java │ │ │ │ │ │ ├── GitCapable.java │ │ │ │ │ │ ├── IDEGenerationCapable.java │ │ │ │ │ │ ├── ImportCapable.java │ │ │ │ │ │ ├── LauncherProjectileContext.java │ │ │ │ │ │ ├── ProjectNameCapable.java │ │ │ │ │ │ └── UploadZipProjectileContext.java │ │ │ │ └── security │ │ │ │ │ └── Secured.java │ │ │ │ └── spi │ │ │ │ ├── Application.java │ │ │ │ ├── DirectoryReaper.java │ │ │ │ ├── IdentityProvider.java │ │ │ │ ├── ProjectileEnricher.java │ │ │ │ ├── ProjectilePreparer.java │ │ │ │ └── PublicKeyProvider.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── beans.xml │ │ └── test │ │ └── java │ │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── core │ │ └── spi │ │ └── ApplicationTypeConversionTest.java └── core-impl │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── fabric8 │ │ │ └── launcher │ │ │ └── core │ │ │ └── impl │ │ │ ├── CoreEnvironment.java │ │ │ ├── MissionControlImpl.java │ │ │ ├── catalog │ │ │ └── RhoarBoosterCatalogFactory.java │ │ │ ├── documentation │ │ │ ├── BoosterDocumentationStoreImpl.java │ │ │ ├── BoosterReadmePaths.java │ │ │ └── BoosterReadmeProcessorImpl.java │ │ │ ├── events │ │ │ └── LocalStatusMessageEventBroker.java │ │ │ ├── filters │ │ │ ├── JWTSecurityContext.java │ │ │ ├── JWTValidator.java │ │ │ └── SecuredFilter.java │ │ │ ├── identity │ │ │ ├── KeycloakIdentityProvider.java │ │ │ ├── KeycloakParameters.java │ │ │ └── KeycloakPublicKeyProvider.java │ │ │ ├── preparers │ │ │ ├── ChangeArquillianConfigurationPreparer.java │ │ │ ├── ChangeMavenMetadataPreparer.java │ │ │ ├── ChangeNodeJSMetadataPreparer.java │ │ │ ├── ReadmePreparer.java │ │ │ ├── RemoveOpenshiftioFolderPreparer.java │ │ │ └── VSCodePreparer.java │ │ │ ├── producers │ │ │ ├── HttpClientProducer.java │ │ │ ├── IdentityProviderProducer.java │ │ │ └── KeycloakParametersProducer.java │ │ │ └── steps │ │ │ ├── GitSteps.java │ │ │ └── OpenShiftSteps.java │ └── resources │ │ ├── META-INF │ │ └── beans.xml │ │ └── vscode │ │ ├── fuse │ │ └── extensions.json │ │ ├── nodejs │ │ └── extensions.json │ │ ├── spring-boot │ │ └── extensions.json │ │ ├── thorntail │ │ └── extensions.json │ │ └── vert.x │ │ └── extensions.json │ └── test │ ├── java │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── core │ │ └── impl │ │ ├── catalog │ │ └── RhoarBoosterCatalogFactoryTest.java │ │ ├── documentation │ │ ├── BoosterDocumentationCloneRepoIT.java │ │ ├── BoosterDocumentationStoreImplTest.java │ │ └── BoosterReadmeProcessorImplTest.java │ │ ├── events │ │ └── LocalStatusMessageEventBrokerTest.java │ │ ├── filters │ │ └── JWTValidatorTest.java │ │ ├── identity │ │ ├── KeycloakIdentityProviderHoverflyTest.java │ │ ├── KeycloakIdentityProviderTest.java │ │ ├── KeycloakParametersTest.java │ │ └── KeycloakPublicKeyProviderHoverflyTest.java │ │ └── preparers │ │ ├── ChangeArquillianConfigurationPreparerIT.java │ │ ├── ChangeArquillianConfigurationPreparerTest.java │ │ ├── ChangeNodeJSMetadataPreparerTest.java │ │ ├── ReadmePreparerTest.java │ │ └── VSCodePreparerTest.java │ └── resources │ ├── arquillian.xml │ ├── configuration │ ├── arquillian-without-app-name-property.xml │ └── arquillian.xml │ ├── extra-files.zip │ ├── hoverfly │ ├── keycloakidentityproviderhoverflytest │ │ ├── should_get_cluster_token_correctly.json │ │ ├── should_get_empty_when_cluster_is_not_connected.json │ │ ├── should_get_empty_with_invalid_token.json │ │ └── should_get_github_token_correctly.json │ └── keycloakpublickeyproviderhoverflytest │ │ ├── shared.json │ │ └── should_return_empty_response_when_error_occurs.json │ ├── mockito-extensions │ └── org.mockito.plugins.MockMaker │ ├── package-result.json │ ├── package.json │ └── repos │ ├── boosters │ ├── booster-catalog.bundle │ ├── fuse-springboot-circuit-breaker-booster.bundle │ ├── nodejs-circuit-breaker-redhat.bundle │ ├── nodejs-circuit-breaker.bundle │ ├── nodejs-configmap-redhat.bundle │ ├── nodejs-configmap.bundle │ ├── nodejs-health-check-redhat.bundle │ ├── nodejs-health-check.bundle │ ├── nodejs-rest-http-crud-redhat.bundle │ ├── nodejs-rest-http-crud.bundle │ ├── nodejs-rest-http-redhat.bundle │ ├── nodejs-rest-http-secured-redhat.bundle │ ├── nodejs-rest-http-secured.bundle │ ├── nodejs-rest-http.bundle │ ├── spring-boot-circuit-breaker-booster.bundle │ ├── spring-boot-configmap-booster.bundle │ ├── spring-boot-crud-booster.bundle │ ├── spring-boot-health-check-booster.bundle │ ├── spring-boot-http-booster.bundle │ ├── spring-boot-http-secured-booster.bundle │ ├── vertx-circuit-breaker-booster-redhat.bundle │ ├── vertx-circuit-breaker-booster.bundle │ ├── vertx-configmap-booster-redhat.bundle │ ├── vertx-configmap-booster.bundle │ ├── vertx-crud-booster-redhat.bundle │ ├── vertx-crud-booster.bundle │ ├── vertx-health-checks-booster-redhat.bundle │ ├── vertx-health-checks-booster.bundle │ ├── vertx-http-booster-redhat.bundle │ ├── vertx-http-booster.bundle │ ├── vertx-secured-http-booster.bundle │ ├── wfswarm-circuit-breaker-redhat.bundle │ ├── wfswarm-circuit-breaker.bundle │ ├── wfswarm-configmap-redhat.bundle │ ├── wfswarm-configmap.bundle │ ├── wfswarm-health-check-redhat.bundle │ ├── wfswarm-health-check.bundle │ ├── wfswarm-rest-http-crud-redhat.bundle │ ├── wfswarm-rest-http-crud.bundle │ ├── wfswarm-rest-http-redhat.bundle │ ├── wfswarm-rest-http-secured-redhat.bundle │ ├── wfswarm-rest-http-secured.bundle │ └── wfswarm-rest-http.bundle │ ├── custom-catalogs │ └── gastaldi-booster-catalog.bundle │ └── documentation │ └── docs │ └── topics │ └── readme │ ├── cd-rest-http-spring-boot.properties │ ├── cd-rest-http-vert.x.properties │ ├── crud-README.adoc │ ├── rest-http-README.adoc │ └── zip-rest-http-spring-boot.properties ├── creator ├── README.md ├── creator ├── pom.xml ├── src │ ├── main │ │ ├── kotlin │ │ │ └── io │ │ │ │ └── fabric8 │ │ │ │ └── launcher │ │ │ │ └── creator │ │ │ │ ├── catalog │ │ │ │ ├── AppImages.kt │ │ │ │ ├── CapabilityComponent.kt │ │ │ │ ├── CapabilityDatabase.kt │ │ │ │ ├── CapabilityHealth.kt │ │ │ │ ├── CapabilityImport.kt │ │ │ │ ├── CapabilityRest.kt │ │ │ │ ├── CapabilityWebApp.kt │ │ │ │ ├── CapabilityWelcome.kt │ │ │ │ ├── DatabaseCrudWildfly.kt │ │ │ │ ├── ImportCodebase.kt │ │ │ │ ├── MavenSetup.kt │ │ │ │ ├── README.md │ │ │ │ ├── RuntimeBaseSupport.kt │ │ │ │ ├── WelcomeApp.kt │ │ │ │ └── list.kt │ │ │ │ ├── cli │ │ │ │ ├── analyze.kt │ │ │ │ ├── apply.kt │ │ │ │ ├── generate.kt │ │ │ │ ├── list.kt │ │ │ │ └── main.kt │ │ │ │ └── core │ │ │ │ ├── analysis │ │ │ │ ├── analyze.kt │ │ │ │ └── git.kt │ │ │ │ ├── catalog │ │ │ │ ├── Generator.kt │ │ │ │ ├── enums.kt │ │ │ │ ├── generators.kt │ │ │ │ ├── info.kt │ │ │ │ └── io.kt │ │ │ │ ├── data │ │ │ │ ├── api.kt │ │ │ │ ├── json.kt │ │ │ │ └── yaml.kt │ │ │ │ ├── deploy │ │ │ │ ├── apply.kt │ │ │ │ ├── descriptors.kt │ │ │ │ └── io.kt │ │ │ │ ├── maven │ │ │ │ └── helpers.kt │ │ │ │ ├── nodejs │ │ │ │ └── helpers.kt │ │ │ │ ├── oc │ │ │ │ └── commands.kt │ │ │ │ ├── resource │ │ │ │ ├── Resources.kt │ │ │ │ ├── helpers.kt │ │ │ │ ├── images.kt │ │ │ │ ├── io.kt │ │ │ │ └── templates.kt │ │ │ │ ├── template │ │ │ │ ├── Transform.kt │ │ │ │ └── transformers │ │ │ │ │ ├── blocks.kt │ │ │ │ │ ├── cases.kt │ │ │ │ │ ├── id.kt │ │ │ │ │ ├── insert.kt │ │ │ │ │ └── replace.kt │ │ │ │ ├── types.kt │ │ │ │ └── utils.kt │ │ └── resources │ │ │ └── META-INF │ │ │ ├── catalog │ │ │ ├── app-images │ │ │ │ ├── info.yaml │ │ │ │ └── resources │ │ │ │ │ ├── docker.io_openliberty_open-liberty-s2i.yaml │ │ │ │ │ ├── fabric8_s2i-java.yaml │ │ │ │ │ ├── mysql.yaml │ │ │ │ │ ├── nodeshift_ubi8-s2i-web-app.yaml │ │ │ │ │ ├── postgresql.yaml │ │ │ │ │ ├── quay.io_wildfly_wildfly-centos7.yaml │ │ │ │ │ ├── registry.access.redhat.com_dotnet_dotnet-22-rhel7.yaml │ │ │ │ │ ├── registry.access.redhat.com_redhat-openjdk-18_openjdk18-openshift.yaml │ │ │ │ │ └── registry.access.redhat.com_ubi8_nodejs-12.yaml │ │ │ ├── capability-component │ │ │ │ └── info.yaml │ │ │ ├── capability-database │ │ │ │ └── info.yaml │ │ │ ├── capability-health │ │ │ │ └── info.yaml │ │ │ ├── capability-import │ │ │ │ └── info.yaml │ │ │ ├── capability-rest │ │ │ │ └── info.yaml │ │ │ ├── capability-web-app │ │ │ │ └── info.yaml │ │ │ ├── capability-welcome │ │ │ │ └── info.yaml │ │ │ ├── database-crud-dotnet │ │ │ │ ├── files │ │ │ │ │ ├── Controllers │ │ │ │ │ │ └── FruitsController.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Fruit.cs │ │ │ │ │ │ └── FruitsContext.cs │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ ├── csproj-mysql │ │ │ │ │ ├── csproj-postgresql │ │ │ │ │ ├── dbcontext │ │ │ │ │ ├── dbinitialize │ │ │ │ │ ├── efcore │ │ │ │ │ ├── healthcheck-mysql │ │ │ │ │ └── healthcheck-postgresql │ │ │ ├── database-crud-nodejs │ │ │ │ ├── files │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── fruits.js │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── routes │ │ │ │ │ │ │ └── fruits.js │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── public │ │ │ │ │ │ └── fruit │ │ │ │ │ │ │ └── index.html │ │ │ │ │ └── test │ │ │ │ │ │ ├── fruits-api-test.js │ │ │ │ │ │ ├── fruits-test.js │ │ │ │ │ │ └── integration │ │ │ │ │ │ └── fruits-integration-test.js │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ ├── app.merge.js │ │ │ │ │ └── package.json │ │ │ ├── database-crud-openliberty │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── database │ │ │ │ │ │ │ ├── Fruit.java │ │ │ │ │ │ │ └── FruitResource.java │ │ │ │ │ │ ├── liberty │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ │ └── dataSource.xml │ │ │ │ │ │ │ └── postgresql │ │ │ │ │ │ │ └── dataSource.xml │ │ │ │ │ │ ├── resources │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ ├── load.sql │ │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ │ └── webapp │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── database-crud-openliberty │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ ├── pom.mysql.xml │ │ │ │ │ └── pom.postgresql.xml │ │ │ ├── database-crud-quarkus │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── database │ │ │ │ │ │ │ ├── Fruit.java │ │ │ │ │ │ │ └── FruitResource.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── import.sql │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ ├── application.mysql.properties │ │ │ │ │ ├── application.postgresql.properties │ │ │ │ │ ├── pom.mysql.xml │ │ │ │ │ └── pom.postgresql.xml │ │ │ ├── database-crud-springboot │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ ├── licenses │ │ │ │ │ │ └── content │ │ │ │ │ │ │ ├── BSD2Clause │ │ │ │ │ │ │ ├── bsd-2-clause - license.html │ │ │ │ │ │ │ ├── eclipse public license, version 1.0 - epl-v10.php.html │ │ │ │ │ │ │ └── gnu lesser general public license, version 2.1 - lgpl-2.1.html │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ │ └── database │ │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ │ ├── NotFoundException.java │ │ │ │ │ │ │ │ ├── UnprocessableEntityException.java │ │ │ │ │ │ │ │ └── UnsupportedMediaTypeException.java │ │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── Fruit.java │ │ │ │ │ │ │ │ ├── FruitController.java │ │ │ │ │ │ │ │ └── FruitRepository.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── application.properties │ │ │ │ │ │ │ ├── import.sql │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── fruit │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ ├── BoosterApplicationIT.java │ │ │ │ │ │ │ └── OpenShiftIT.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ ├── arquillian.xml │ │ │ │ │ │ ├── database.yml │ │ │ │ │ │ └── logback-test.xml │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ ├── pom.mysql.xml │ │ │ │ │ └── pom.postgresql.xml │ │ │ ├── database-crud-thorntail │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── database │ │ │ │ │ │ │ ├── Fruit.java │ │ │ │ │ │ │ └── FruitResource.java │ │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ ├── load.sql │ │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ │ └── project-local.yml │ │ │ │ │ │ └── webapp │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── database-crud-thorntail │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ ├── pom.mysql.xml │ │ │ │ │ └── pom.postgresql.xml │ │ │ ├── database-crud-vertx │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ ├── licenses │ │ │ │ │ │ └── content │ │ │ │ │ │ │ ├── BSD2Clause │ │ │ │ │ │ │ ├── bsd-2-clause - license.html │ │ │ │ │ │ │ ├── eclipse public license, version 1.0 - epl-v10.php.html │ │ │ │ │ │ │ └── gnu lesser general public license, version 2.1 - lgpl-2.1.html │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ │ └── database │ │ │ │ │ │ │ │ ├── CrudApplication.java │ │ │ │ │ │ │ │ ├── DBInitHelper.java │ │ │ │ │ │ │ │ ├── Errors.java │ │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── Store.java │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ └── JdbcProductStore.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── ddl.sql │ │ │ │ │ │ │ └── webroot │ │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ │ └── database-crud-vertx │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── OpenShiftIT.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ ├── arquillian.xml │ │ │ │ │ │ └── database.yml │ │ │ │ ├── info.yaml │ │ │ │ ├── merge-redhat │ │ │ │ │ └── pom.xml │ │ │ │ └── merge │ │ │ │ │ ├── pom.mysql.xml │ │ │ │ │ └── pom.postgresql.xml │ │ │ ├── database-crud-wildfly │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── database │ │ │ │ │ │ │ ├── Fruit.java │ │ │ │ │ │ │ └── FruitResource.java │ │ │ │ │ │ ├── resources │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ ├── load.sql │ │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ │ └── webapp │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── database-crud-wildfly │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ └── pom.xml │ │ │ ├── database-mysql │ │ │ │ └── info.yaml │ │ │ ├── database-postgresql │ │ │ │ └── info.yaml │ │ │ ├── database-secret │ │ │ │ ├── info.yaml │ │ │ │ └── resources │ │ │ │ │ └── secret.yaml │ │ │ ├── enums.yaml │ │ │ ├── import-codebase │ │ │ │ └── info.yaml │ │ │ ├── language-csharp │ │ │ │ ├── files │ │ │ │ │ └── gap │ │ │ │ └── info.yaml │ │ │ ├── language-java │ │ │ │ ├── files │ │ │ │ │ └── gap │ │ │ │ └── info.yaml │ │ │ ├── language-nodejs │ │ │ │ ├── files │ │ │ │ │ └── gap │ │ │ │ └── info.yaml │ │ │ ├── maven-setup │ │ │ │ └── info.yaml │ │ │ ├── rest-dotnet │ │ │ │ ├── files │ │ │ │ │ ├── Controllers │ │ │ │ │ │ └── GreetingController.cs │ │ │ │ │ └── Models │ │ │ │ │ │ └── Greeting.cs │ │ │ │ └── info.yaml │ │ │ ├── rest-nodejs │ │ │ │ ├── files │ │ │ │ │ ├── greeting.js │ │ │ │ │ ├── public │ │ │ │ │ │ └── greeting │ │ │ │ │ │ │ └── index.html │ │ │ │ │ └── test │ │ │ │ │ │ ├── greeting-test.js │ │ │ │ │ │ └── integration │ │ │ │ │ │ └── greeting-integration-test.js │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ └── app.merge.js │ │ │ ├── rest-openliberty │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── Greeting.java │ │ │ │ │ │ │ └── GreetingEndpoint.java │ │ │ │ │ │ └── webapp │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── rest-openliberty │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ └── pom.xml │ │ │ ├── rest-quarkus │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ │ └── io │ │ │ │ │ │ └── openshift │ │ │ │ │ │ └── booster │ │ │ │ │ │ └── http │ │ │ │ │ │ ├── Greeting.java │ │ │ │ │ │ └── GreetingEndpoint.java │ │ │ │ └── info.yaml │ │ │ ├── rest-springboot │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ │ └── BoosterApplication.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ ├── application.properties │ │ │ │ │ │ │ └── greeting │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ ├── AbstractBoosterApplicationTest.java │ │ │ │ │ │ │ └── OpenShiftIT.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ ├── arquillian.xml │ │ │ │ │ │ └── logback-test.xml │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ └── pom.xml │ │ │ ├── rest-thorntail │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── Greeting.java │ │ │ │ │ │ │ └── GreetingEndpoint.java │ │ │ │ │ │ └── webapp │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── rest-thorntail │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ └── pom.xml │ │ │ ├── rest-vertx │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── io │ │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ │ └── HttpApplication.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ └── webroot │ │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ │ └── rest-vertx │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── HttpApplicationTest.java │ │ │ │ │ │ │ └── OpenShiftIT.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── arquillian.xml │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ └── pom.xml │ │ │ ├── rest-wildfly │ │ │ │ ├── files │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ ├── Greeting.java │ │ │ │ │ │ │ └── GreetingEndpoint.java │ │ │ │ │ │ └── webapp │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── rest-wildfly │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ └── merge │ │ │ │ │ └── pom.xml │ │ │ ├── runtime-angular │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── angular.json │ │ │ │ │ ├── browserslist │ │ │ │ │ ├── e2e │ │ │ │ │ │ ├── protractor.conf.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ │ │ │ └── app.po.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── karma.conf.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── app.component.css │ │ │ │ │ │ │ ├── app.component.html │ │ │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ │ │ ├── app.component.ts │ │ │ │ │ │ │ └── app.module.ts │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── environments │ │ │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ │ │ └── environment.ts │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── main.ts │ │ │ │ │ │ ├── polyfills.ts │ │ │ │ │ │ ├── styles.css │ │ │ │ │ │ └── test.ts │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ ├── tsconfig.spec.json │ │ │ │ │ └── tslint.json │ │ │ │ └── info.yaml │ │ │ ├── runtime-base-support │ │ │ │ ├── files │ │ │ │ │ ├── README.md │ │ │ │ │ └── gap │ │ │ │ └── info.yaml │ │ │ ├── runtime-dotnet │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── launchSettings.json │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Startup.cs │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ └── files.csproj │ │ │ │ └── info.yaml │ │ │ ├── runtime-nodejs │ │ │ │ ├── files │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.js │ │ │ │ │ ├── bin │ │ │ │ │ │ └── www │ │ │ │ │ ├── package.json │ │ │ │ │ └── public │ │ │ │ │ │ └── index.html │ │ │ │ └── info.yaml │ │ │ ├── runtime-openliberty │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── RestApplication.java │ │ │ │ │ │ ├── liberty │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── server.xml │ │ │ │ │ │ └── webapp │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ └── beans.xml │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── platform-openliberty │ │ │ │ │ │ └── index.html │ │ │ │ └── info.yaml │ │ │ ├── runtime-quarkus │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── docker │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ └── info.yaml │ │ │ ├── runtime-react │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── logo192.png │ │ │ │ │ │ ├── logo512.png │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ └── robots.txt │ │ │ │ │ └── src │ │ │ │ │ │ ├── App.css │ │ │ │ │ │ ├── App.js │ │ │ │ │ │ ├── App.test.js │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ └── serviceWorker.js │ │ │ │ └── info.yaml │ │ │ ├── runtime-springboot │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── mvnw │ │ │ │ │ ├── mvnw.cmd │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ ├── BoosterApplication.java │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── Greeting.java │ │ │ │ │ │ │ ├── GreetingController.java │ │ │ │ │ │ │ ├── GreetingProperties.java │ │ │ │ │ │ │ ├── ShutdownController.java │ │ │ │ │ │ │ └── TomcatShutdown.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── static │ │ │ │ │ │ └── index.html │ │ │ │ └── info.yaml │ │ │ ├── runtime-thorntail │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── licenses │ │ │ │ │ │ ├── apache software license, version 2.0 - license-2.0.txt │ │ │ │ │ │ ├── bouncy castle licence - licence.html │ │ │ │ │ │ ├── bsd-3-clause.txt.html │ │ │ │ │ │ ├── common development and distribution license (cddl) and gnu public license v.2 w_classpath exception - cddl-gplv2.html │ │ │ │ │ │ ├── common development and distribution license - cddl.txt │ │ │ │ │ │ ├── common development and distribution license 1.0 - cddl1.html │ │ │ │ │ │ ├── common public license - cpl1.0.txt.html │ │ │ │ │ │ ├── dual license consisting of the cddl v1.1 and gpl v2 - cddl+gpl-1.1.txt │ │ │ │ │ │ ├── eclipse distribution license, version 1.0 - edl-v10.html │ │ │ │ │ │ ├── eclipse public license, version 1.0 - epl-v10.html │ │ │ │ │ │ ├── gnu general public license, version 2 with the classpath exception - gpl-2.0-ce.txt │ │ │ │ │ │ ├── gnu lesser general public license - lgpl.txt │ │ │ │ │ │ ├── gnu lesser general public license, version 2.1 - lgpl-2.1.html │ │ │ │ │ │ ├── gnu lesser general public license, version 3 - lgpl-3.0-standalone.html │ │ │ │ │ │ ├── gpl (with dual licensing option) - gpl.html │ │ │ │ │ │ ├── indiana university extreme! lab software license 1.1.1 - xmlpull_license.html │ │ │ │ │ │ ├── licenses.html │ │ │ │ │ │ ├── licenses.xml │ │ │ │ │ │ ├── mozilla public license 1.1 - mpl-1.1.html │ │ │ │ │ │ ├── public domain - cc0-1.0.txt │ │ │ │ │ │ ├── public domain - license.txt │ │ │ │ │ │ ├── sequence library license - sequence-license.txt │ │ │ │ │ │ ├── similar to apache license but with the acknowledgment clause removed - license.txt │ │ │ │ │ │ ├── the bsd license - bsd.txt │ │ │ │ │ │ ├── the mit license - mit.txt.html │ │ │ │ │ │ ├── tmate open source license (with dual licensing option) - license.html │ │ │ │ │ │ └── trilead library license - trilead-license.txt │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── RestApplication.java │ │ │ │ │ │ └── webapp │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ └── beans.xml │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── platform-thorntail │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ ├── merge-community │ │ │ │ │ └── pom.xml │ │ │ │ └── merge-redhat │ │ │ │ │ └── pom.xml │ │ │ ├── runtime-vertx │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── licenses │ │ │ │ │ │ └── content │ │ │ │ │ │ │ ├── Apache+License+20 │ │ │ │ │ │ │ ├── BSD+2clause+Simplified+License │ │ │ │ │ │ │ ├── Common+Development+and+Distribution+License+10 │ │ │ │ │ │ │ ├── Eclipse+Public+License++v+20 │ │ │ │ │ │ │ ├── Eclipse+Public+License+Version+10 │ │ │ │ │ │ │ ├── GNU+Lesser+General+Public+License+v21+only │ │ │ │ │ │ │ ├── MIT+License │ │ │ │ │ │ │ ├── Mozilla+Public+License+11 │ │ │ │ │ │ │ ├── Public+Domain │ │ │ │ │ │ │ ├── apache software license, version 2.0 - license-2.0.txt │ │ │ │ │ │ │ ├── eclipse public license, version 1.0 - epl-v10.html │ │ │ │ │ │ │ ├── the 2-clause bsd license - bsd-license.txt.html │ │ │ │ │ │ │ └── the mit license - mit.txt.html │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ ├── MainApplication.java │ │ │ │ │ │ │ └── RouterConsumer.java │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── webroot │ │ │ │ │ │ └── generator-examples │ │ │ │ │ │ └── platform-vertx │ │ │ │ │ │ └── index.html │ │ │ │ ├── info.yaml │ │ │ │ ├── merge-community │ │ │ │ │ └── pom.xml │ │ │ │ └── merge-redhat │ │ │ │ │ └── pom.xml │ │ │ ├── runtime-vuejs │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── babel.config.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── index.html │ │ │ │ │ └── src │ │ │ │ │ │ ├── App.vue │ │ │ │ │ │ ├── assets │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── components │ │ │ │ │ │ └── HelloWorld.vue │ │ │ │ │ │ └── main.js │ │ │ │ └── info.yaml │ │ │ ├── runtime-wildfly │ │ │ │ ├── files │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── licenses │ │ │ │ │ │ ├── apache software license, version 2.0 - license-2.0.txt │ │ │ │ │ │ ├── bouncy castle licence - licence.html │ │ │ │ │ │ ├── bsd-3-clause.txt.html │ │ │ │ │ │ ├── common development and distribution license (cddl) and gnu public license v.2 w_classpath exception - cddl-gplv2.html │ │ │ │ │ │ ├── common development and distribution license - cddl.txt │ │ │ │ │ │ ├── common development and distribution license 1.0 - cddl1.html │ │ │ │ │ │ ├── common public license - cpl1.0.txt.html │ │ │ │ │ │ ├── dual license consisting of the cddl v1.1 and gpl v2 - cddl+gpl-1.1.txt │ │ │ │ │ │ ├── eclipse distribution license, version 1.0 - edl-v10.html │ │ │ │ │ │ ├── eclipse public license, version 1.0 - epl-v10.html │ │ │ │ │ │ ├── gnu general public license, version 2 with the classpath exception - gpl-2.0-ce.txt │ │ │ │ │ │ ├── gnu lesser general public license - lgpl.txt │ │ │ │ │ │ ├── gnu lesser general public license, version 2.1 - lgpl-2.1.html │ │ │ │ │ │ ├── gnu lesser general public license, version 3 - lgpl-3.0-standalone.html │ │ │ │ │ │ ├── gpl (with dual licensing option) - gpl.html │ │ │ │ │ │ ├── indiana university extreme! lab software license 1.1.1 - xmlpull_license.html │ │ │ │ │ │ ├── licenses.html │ │ │ │ │ │ ├── licenses.xml │ │ │ │ │ │ ├── mozilla public license 1.1 - mpl-1.1.html │ │ │ │ │ │ ├── public domain - cc0-1.0.txt │ │ │ │ │ │ ├── public domain - license.txt │ │ │ │ │ │ ├── sequence library license - sequence-license.txt │ │ │ │ │ │ ├── similar to apache license but with the acknowledgment clause removed - license.txt │ │ │ │ │ │ ├── the bsd license - bsd.txt │ │ │ │ │ │ ├── the mit license - mit.txt.html │ │ │ │ │ │ ├── tmate open source license (with dual licensing option) - license.html │ │ │ │ │ │ └── trilead library license - trilead-license.txt │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── openshift │ │ │ │ │ │ │ └── booster │ │ │ │ │ │ │ └── RestApplication.java │ │ │ │ │ │ └── webapp │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ ├── beans.xml │ │ │ │ │ │ └── web.xml │ │ │ │ │ │ ├── generator-examples │ │ │ │ │ │ └── platform-wildfly │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── health │ │ │ │ │ │ └── index.html │ │ │ │ └── info.yaml │ │ │ └── welcome-app │ │ │ │ ├── files │ │ │ │ ├── README.md │ │ │ │ └── gap │ │ │ │ ├── info.yaml │ │ │ │ └── templates │ │ │ │ └── welcome-app.yaml │ │ │ ├── fileattr.yaml │ │ │ └── resource │ │ │ └── images.yaml │ └── test │ │ ├── kotlin │ │ ├── io │ │ │ └── fabric8 │ │ │ │ └── launcher │ │ │ │ └── creator │ │ │ │ └── core │ │ │ │ ├── catalog │ │ │ │ ├── DeploymentDescriptorTest.kt │ │ │ │ ├── infotest.kt │ │ │ │ └── validatetest.kt │ │ │ │ ├── resource │ │ │ │ └── resourcetest.kt │ │ │ │ └── template │ │ │ │ ├── templatetest.kt │ │ │ │ ├── transformer-blocks-test.kt │ │ │ │ ├── transformer-cases-test.kt │ │ │ │ ├── transformer-id-test.kt │ │ │ │ ├── transformer-insert-test.kt │ │ │ │ └── transformer-replace-test.kt │ │ └── it │ │ │ ├── IntegrationTestsIT.kt │ │ │ ├── config.kt │ │ │ ├── functions.kt │ │ │ ├── ochelpers.kt │ │ │ ├── tests │ │ │ ├── DatabaseTests.kt │ │ │ ├── HealthTests.kt │ │ │ ├── RestTests.kt │ │ │ ├── WebAppTests.kt │ │ │ └── list.kt │ │ │ └── types.kt │ │ └── resources │ │ ├── io │ │ └── fabric8 │ │ │ └── launcher │ │ │ └── creator │ │ │ └── core │ │ │ └── resource │ │ │ └── resources.yaml │ │ └── junit-platform.properties └── update-platform-generators.sh ├── docker.sh ├── frontend ├── .codecov.yml ├── .env.docker.staging-api ├── .gitignore ├── CHANGELOG.md ├── README.md ├── RELEASE.adoc ├── assembly.xml ├── jest.config.base.js ├── jest.config.js ├── lerna.json ├── package.json ├── packages │ ├── launcher-app │ │ ├── .env │ │ ├── .env.development │ │ ├── .env.local-api │ │ ├── .env.mock-api │ │ ├── .env.openshift │ │ ├── .env.production │ │ ├── .env.production-api │ │ ├── .env.staging-api │ │ ├── .env.test │ │ ├── .storybook │ │ │ ├── addons.js │ │ │ ├── config.js │ │ │ └── webpack.config.js │ │ ├── CHANGELOG.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── public │ │ │ └── index.html │ │ ├── src │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ └── logo │ │ │ │ │ │ ├── RHD-logo.svg │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── fuse-logo.png │ │ │ │ │ │ ├── nodejs-logo.png │ │ │ │ │ │ ├── openliberty.svg │ │ │ │ │ │ ├── snowdrop.svg │ │ │ │ │ │ ├── thorntail.svg │ │ │ │ │ │ └── vertx.svg │ │ │ │ ├── config.ts │ │ │ │ ├── launcher-app.scss │ │ │ │ ├── launcher-app.tsx │ │ │ │ ├── layout.module.scss │ │ │ │ ├── layout.tsx │ │ │ │ ├── login-page.module.scss │ │ │ │ ├── login-page.tsx │ │ │ │ └── logo.svg │ │ │ ├── auth │ │ │ │ ├── auth-context.tsx │ │ │ │ ├── auth-router.tsx │ │ │ │ ├── authentication-api-factory.ts │ │ │ │ ├── authentication-api.ts │ │ │ │ ├── impl │ │ │ │ │ ├── authentication-api-react-state-proxy.tsx │ │ │ │ │ ├── keycloak-authentication-api.ts │ │ │ │ │ ├── mock-authentication-api.ts │ │ │ │ │ ├── no-authentication-api.ts │ │ │ │ │ ├── openshift-authentication-api.spec.ts │ │ │ │ │ └── openshift-authentication-api.ts │ │ │ │ └── types.ts │ │ │ ├── client │ │ │ │ ├── data-examples │ │ │ │ │ ├── mock-capabilities.json │ │ │ │ │ ├── mock-clusters.json │ │ │ │ │ ├── mock-enums.json │ │ │ │ │ ├── mock-example-catalog.json │ │ │ │ │ ├── mock-git-providers.json │ │ │ │ │ ├── mock-git-user.json │ │ │ │ │ ├── mock-import-analyze.json │ │ │ │ │ └── mock-quarkus-extensions.json │ │ │ │ ├── helpers │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── launchers.spec.ts.snap │ │ │ │ │ ├── launchers.spec.ts │ │ │ │ │ ├── launchers.ts │ │ │ │ │ ├── locations.spec.ts │ │ │ │ │ ├── locations.ts │ │ │ │ │ ├── mock-helpers.ts │ │ │ │ │ ├── preconditions.spec.ts │ │ │ │ │ └── preconditions.ts │ │ │ │ ├── http.service.spec.ts │ │ │ │ ├── http.service.ts │ │ │ │ ├── impl │ │ │ │ │ ├── default.launcher.client.ts │ │ │ │ │ ├── mock.launcher.client.ts │ │ │ │ │ └── with-cache.launcher.client.ts │ │ │ │ ├── launcher-api.md │ │ │ │ ├── launcher.client.factory.ts │ │ │ │ ├── launcher.client.ts │ │ │ │ └── types.ts │ │ │ ├── contexts │ │ │ │ ├── authorization-context.ts │ │ │ │ ├── launcher-client-context.ts │ │ │ │ └── launcher-client-provider.tsx │ │ │ ├── flows │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── create-new-app-flow.spec.tsx.snap │ │ │ │ │ │ ├── deploy-example-app-flow.spec.tsx.snap │ │ │ │ │ │ └── import-existing-flow.spec.tsx.snap │ │ │ │ │ ├── create-new-app-flow.spec.tsx │ │ │ │ │ ├── deploy-example-app-flow.spec.tsx │ │ │ │ │ ├── flow-helpers.tsx │ │ │ │ │ ├── flows.stories.tsx │ │ │ │ │ └── import-existing-flow.spec.tsx │ │ │ │ ├── create-new-app-flow.tsx │ │ │ │ ├── deploy-example-app-flow.tsx │ │ │ │ ├── import-existing-flow.tsx │ │ │ │ ├── launch-flow.module.scss │ │ │ │ ├── launch-flow.tsx │ │ │ │ ├── launcher-client-adapters.ts │ │ │ │ └── types.tsx │ │ │ ├── hubs │ │ │ │ ├── __tests__ │ │ │ │ │ ├── forms.stories.tsx │ │ │ │ │ └── overviews.stories.tsx │ │ │ │ ├── backend-hub.tsx │ │ │ │ ├── deployment-hub.tsx │ │ │ │ ├── dest-repository-hub.tsx │ │ │ │ ├── example-hub.tsx │ │ │ │ ├── frontend-hub.tsx │ │ │ │ ├── src-repository-hub.tsx │ │ │ │ └── welcome-app-hub.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── launcher │ │ │ │ ├── __tests__ │ │ │ │ │ └── launcher.stories.tsx │ │ │ │ ├── launcher.module.scss │ │ │ │ └── launcher.tsx │ │ │ ├── loaders │ │ │ │ ├── __tests__ │ │ │ │ │ └── new-app-capabilities-loader.spec.tsx │ │ │ │ ├── buildimage-loader.tsx │ │ │ │ ├── enum-loader.tsx │ │ │ │ ├── example-catalog-loader.tsx │ │ │ │ ├── git-info-loader.tsx │ │ │ │ ├── new-app-capabilities-loader.tsx │ │ │ │ ├── new-app-runtimes-loaders.tsx │ │ │ │ └── openshiftcluster-loader.tsx │ │ │ ├── next-steps │ │ │ │ ├── __tests__ │ │ │ │ │ └── misc.stories.tsx │ │ │ │ ├── download-next-steps.tsx │ │ │ │ ├── launch-next-steps.tsx │ │ │ │ └── processing-app.tsx │ │ │ ├── pickers │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── cluster-picker.spec.tsx.snap │ │ │ │ │ │ ├── example-picker.spec.tsx.snap │ │ │ │ │ │ └── project-name-input.spec.tsx.snap │ │ │ │ │ ├── buildimage-picker.stories.tsx │ │ │ │ │ ├── capabilities-picker.stories.tsx │ │ │ │ │ ├── cluster-picker.spec.tsx │ │ │ │ │ ├── cluster-picker.stories.tsx │ │ │ │ │ ├── environmentvars-picker.stories.tsx │ │ │ │ │ ├── example-picker.spec.tsx │ │ │ │ │ ├── example-picker.stories.tsx │ │ │ │ │ ├── git-url-picker.stories.tsx │ │ │ │ │ ├── project-name-input.spec.tsx │ │ │ │ │ ├── runtime-picker.stories.tsx │ │ │ │ │ └── user-repository-picker.stories.tsx │ │ │ │ ├── buildimage-picker.tsx │ │ │ │ ├── capabilities-picker.tsx │ │ │ │ ├── capability-field-enum-picker.tsx │ │ │ │ ├── cluster-picker.tsx │ │ │ │ ├── environmentvars-picker.tsx │ │ │ │ ├── example-picker.tsx │ │ │ │ ├── git-url-picker.tsx │ │ │ │ ├── project-name-input.tsx │ │ │ │ ├── repository-picker.module.scss │ │ │ │ ├── runtime-picker.module.scss │ │ │ │ ├── runtime-picker.tsx │ │ │ │ └── user-repository-picker.tsx │ │ │ ├── react-app-env.d.ts │ │ │ ├── react-router.d.ts │ │ │ ├── router │ │ │ │ ├── use-router.spec.ts │ │ │ │ └── use-router.ts │ │ │ ├── sentry-boundary.tsx │ │ │ └── service-worker.ts │ │ └── tsconfig.json │ └── launcher-welcome-app │ │ ├── .env │ │ ├── .env.development │ │ ├── .env.mock-api │ │ ├── .env.production │ │ ├── .env.test │ │ ├── .gitignore │ │ ├── .nvmrc │ │ ├── CHANGELOG.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api │ │ ├── crud-openapi.json │ │ ├── crud-openapi.yaml │ │ ├── health-check-openapi.json │ │ ├── health-check-openapi.yaml │ │ ├── http-openapi.json │ │ └── http-openapi.yaml │ │ ├── docker_push.sh │ │ ├── jest.config.js │ │ ├── nginx.conf │ │ ├── package.json │ │ ├── public │ │ ├── img │ │ │ ├── amq.png │ │ │ ├── openshift.png │ │ │ ├── postgresql.png │ │ │ ├── red-hat-logo.png │ │ │ └── vertx.jpg │ │ └── index.html │ │ ├── scripts │ │ ├── config-tmpl.json │ │ └── entrypoint.sh │ │ ├── src │ │ ├── app │ │ │ ├── App.scss │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── HttpApiContext.ts │ │ │ ├── capabilities │ │ │ │ ├── Capability.tsx │ │ │ │ ├── database │ │ │ │ │ ├── DatabaseCapability.tsx │ │ │ │ │ ├── DatabaseCapabilityApi.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── DatabaseCapability.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── DatabaseCapability.spec.tsx.snap │ │ │ │ ├── healthchecks │ │ │ │ │ ├── HealthChecksCapability.tsx │ │ │ │ │ ├── HealthChecksCapabilityApi.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── HealthChecksCapability.spec.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── HealthChecksCapability.spec.tsx.snap │ │ │ │ └── rest │ │ │ │ │ ├── RestCapability.tsx │ │ │ │ │ ├── RestCapabilityApi.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ ├── RestCapability.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── RestCapability.spec.tsx.snap │ │ │ ├── components │ │ │ │ ├── CapabilityCard.scss │ │ │ │ ├── CapabilityCard.tsx │ │ │ │ ├── DockerImageLink.tsx │ │ │ │ ├── InfoCard.scss │ │ │ │ └── InfoCard.tsx │ │ │ ├── config │ │ │ │ ├── AppDefinition.ts │ │ │ │ ├── appConfig.ts │ │ │ │ ├── capabilitiesConfig.tsx │ │ │ │ └── mockAppConfig.ts │ │ │ └── infos │ │ │ │ ├── CloudDeploymentInfo.tsx │ │ │ │ ├── CodeBaseInfo.tsx │ │ │ │ ├── PartInfo.tsx │ │ │ │ └── __tests__ │ │ │ │ ├── CloudDeploymentInfo.spec.ignore.tsx │ │ │ │ ├── CodeBaseInfo.spec.ignore.tsx │ │ │ │ └── __snapshots__ │ │ │ │ ├── CloudDeploymentInfo.spec.ignore.tsx.snap │ │ │ │ └── CodeBaseInfo.spec.ignore.tsx.snap │ │ ├── assets │ │ │ ├── img │ │ │ │ ├── openshift.png │ │ │ │ └── short-paragraph.png │ │ │ └── logo │ │ │ │ └── RHD-logo.svg │ │ ├── index.scss │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── service-worker.ts │ │ ├── shared │ │ │ ├── components │ │ │ │ ├── Console.scss │ │ │ │ ├── Console.tsx │ │ │ │ ├── ExternalLink.tsx │ │ │ │ ├── HttpRequest.scss │ │ │ │ ├── HttpRequest.tsx │ │ │ │ ├── RequestTitle.tsx │ │ │ │ ├── ShellCommand.scss │ │ │ │ ├── ShellCommand.tsx │ │ │ │ └── SourceMappingLink.tsx │ │ │ └── utils │ │ │ │ ├── HttpApi.ts │ │ │ │ ├── Locations.ts │ │ │ │ ├── Preconditions.ts │ │ │ │ └── Strings.ts │ │ └── typings.d.ts │ │ └── tsconfig.json ├── pom.xml ├── tsconfig.json ├── tslint.json └── yarn.lock ├── git-providers.yaml ├── ide-configs └── idea │ ├── README.md │ └── fabric8-launcher.xml ├── launcher-env-template.sh ├── mvnw ├── mvnw.cmd ├── openshift ├── README.md └── template.yaml ├── pom.xml ├── services ├── git-service-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── service │ │ └── git │ │ ├── GitEnvironment.java │ │ ├── OAuthTokenProvider.java │ │ ├── api │ │ ├── AuthenticationFailedException.java │ │ ├── DuplicateHookException.java │ │ ├── GitHook.java │ │ ├── GitOrganization.java │ │ ├── GitRepository.java │ │ ├── GitRepositoryFilter.java │ │ ├── GitService.java │ │ ├── GitServiceConfig.java │ │ ├── GitServiceFactory.java │ │ ├── GitUser.java │ │ ├── NoSuchOrganizationException.java │ │ └── NoSuchRepositoryException.java │ │ ├── bitbucket │ │ └── api │ │ │ ├── BitbucketEnvironment.java │ │ │ └── BitbucketWebhookEvent.java │ │ ├── gitea │ │ └── api │ │ │ ├── GiteaEnvironment.java │ │ │ └── GiteaWebhookEvent.java │ │ ├── github │ │ └── api │ │ │ ├── GitHubEnvironment.java │ │ │ └── GitHubWebhookEvent.java │ │ ├── gitlab │ │ └── api │ │ │ ├── GitLabEnvironment.java │ │ │ └── GitLabWebhookEvent.java │ │ └── spi │ │ ├── GitProvider.java │ │ ├── GitProviderType.java │ │ ├── GitServiceConfigs.java │ │ └── GitServiceFactories.java ├── git-service-impl │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── fabric8 │ │ │ │ └── launcher │ │ │ │ └── service │ │ │ │ └── git │ │ │ │ ├── AbstractGitService.java │ │ │ │ ├── GitServiceConfigsImpl.java │ │ │ │ ├── GitServiceFactoriesImpl.java │ │ │ │ ├── Gits.java │ │ │ │ ├── OAuthTokenProviderFactory.java │ │ │ │ ├── OAuthTokenProviderImpl.java │ │ │ │ ├── bitbucket │ │ │ │ ├── BitbucketService.java │ │ │ │ └── BitbucketServiceFactory.java │ │ │ │ ├── gitea │ │ │ │ ├── GiteaService.java │ │ │ │ ├── GiteaServiceFactory.java │ │ │ │ └── GiteaUser.java │ │ │ │ ├── github │ │ │ │ ├── GitHubRepository.java │ │ │ │ ├── GitHubService.java │ │ │ │ ├── GitHubServiceFactory.java │ │ │ │ ├── GitHubWebhook.java │ │ │ │ └── InvalidPathException.java │ │ │ │ ├── gitlab │ │ │ │ ├── GitLabOAuthTokenProviderImpl.java │ │ │ │ ├── GitLabService.java │ │ │ │ └── GitLabServiceFactory.java │ │ │ │ └── spi │ │ │ │ └── GitServiceSpi.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── beans.xml │ │ └── test │ │ ├── java │ │ └── io │ │ │ └── fabric8 │ │ │ └── launcher │ │ │ └── service │ │ │ └── git │ │ │ ├── AbstractGitServiceTest.java │ │ │ ├── GitsTest.java │ │ │ ├── OAuthTokenProviderHoverflyTest.java │ │ │ ├── UnmappableCharsTest.java │ │ │ ├── bitbucket │ │ │ └── BitbucketServiceTest.java │ │ │ ├── gitea │ │ │ ├── GiteaServiceTest.java │ │ │ └── MyGiteaServiceTest.java │ │ │ ├── github │ │ │ ├── GitHubServiceFactoryTest.java │ │ │ └── GitHubServiceTest.java │ │ │ └── gitlab │ │ │ └── GitLabServiceTest.java │ │ └── resources │ │ ├── arquillian.xml │ │ ├── hoverfly │ │ ├── bitbucketservicetest │ │ │ ├── clonerepository.json │ │ │ ├── createhook.json │ │ │ ├── createhookwithnullevents.json │ │ │ ├── createhookwithnullrepository.json │ │ │ ├── createhookwithnullwebhookurl.json │ │ │ ├── createhookwithoutevents.json │ │ │ ├── createhookwithoutsecret.json │ │ │ ├── createrepository.json │ │ │ ├── createrepositorywithanonexistentorganization.json │ │ │ ├── createrepositorywithemptyname.json │ │ │ ├── createrepositorywithinvalidname.json │ │ │ ├── createrepositorywithnullname.json │ │ │ ├── createrepositorywithorganization.json │ │ │ ├── deletehook.json │ │ │ ├── failed_login_should_throw_authenticationfailedexception.json │ │ │ ├── gethook.json │ │ │ ├── gethooks.json │ │ │ ├── gethooksonafreshrepository.json │ │ │ ├── gethookswithouthooks.json │ │ │ ├── getloggeduser.json │ │ │ ├── getorganizationsshouldanswercorrectly.json │ │ │ ├── getprovidershouldnotbenullorempty.json │ │ │ ├── getrepositories.json │ │ │ ├── getrepositoriesempty.json │ │ │ ├── getrepositorieswithanonexistentorganization.json │ │ │ ├── getrepositorieswithanorganization.json │ │ │ ├── getrepositorywithanonexistentorganization.json │ │ │ ├── getrepositorywithemptyname.json │ │ │ ├── getrepositorywithfullname.json │ │ │ ├── getrepositorywithinvalidname.json │ │ │ ├── getrepositorywithname.json │ │ │ ├── getrepositorywithnullname.json │ │ │ ├── getrepositorywithnullorganization.json │ │ │ ├── getrepositorywithorganization.json │ │ │ ├── getrepositorywithorganizationandinvalidname.json │ │ │ ├── getrepositorywithorganizationandnullname.json │ │ │ ├── pushfile.json │ │ │ ├── pushnullpath.json │ │ │ ├── pushnullrepository.json │ │ │ ├── searchrepositorieswithnamecontaining.json │ │ │ ├── searchrepositorieswithnullfilter.json │ │ │ ├── searchrepositorieswithorganizationandnamecontaining.json │ │ │ └── searchrepositorieswithorganizationandnullfilter.json │ │ ├── giteaservicetest │ │ │ ├── clonerepository.json │ │ │ ├── createhook.json │ │ │ ├── createhookwithnullevents.json │ │ │ ├── createhookwithnullrepository.json │ │ │ ├── createhookwithnullwebhookurl.json │ │ │ ├── createhookwithoutevents.json │ │ │ ├── createhookwithoutsecret.json │ │ │ ├── createrepository.json │ │ │ ├── createrepositorywithanonexistentorganization.json │ │ │ ├── createrepositorywithemptyname.json │ │ │ ├── createrepositorywithinvalidname.json │ │ │ ├── createrepositorywithnullname.json │ │ │ ├── createrepositorywithorganization.json │ │ │ ├── deletehook.json │ │ │ ├── failed_login_should_throw_authenticationfailedexception.json │ │ │ ├── gethook.json │ │ │ ├── gethooks.json │ │ │ ├── gethooksonafreshrepository.json │ │ │ ├── gethookswithouthooks.json │ │ │ ├── getloggeduser.json │ │ │ ├── getorganizationsshouldanswercorrectly.json │ │ │ ├── getprovidershouldnotbenullorempty.json │ │ │ ├── getrepositories.json │ │ │ ├── getrepositorieswithanonexistentorganization.json │ │ │ ├── getrepositorywithanonexistentorganization.json │ │ │ ├── getrepositorywithemptyname.json │ │ │ ├── getrepositorywithfullname.json │ │ │ ├── getrepositorywithinvalidname.json │ │ │ ├── getrepositorywithname.json │ │ │ ├── getrepositorywithnullname.json │ │ │ ├── getrepositorywithnullorganization.json │ │ │ ├── getrepositorywithorganization.json │ │ │ ├── getrepositorywithorganizationandinvalidname.json │ │ │ ├── getrepositorywithorganizationandnullname.json │ │ │ ├── pushfile.json │ │ │ ├── pushnullpath.json │ │ │ ├── pushnullrepository.json │ │ │ └── searchrepositorieswithnullfilter.json │ │ ├── githubservicetest │ │ │ ├── clonerepository.json │ │ │ ├── createhook.json │ │ │ ├── createhookwithnullevents.json │ │ │ ├── createhookwithnullrepository.json │ │ │ ├── createhookwithnullwebhookurl.json │ │ │ ├── createhookwithoutevents.json │ │ │ ├── createhookwithoutsecret.json │ │ │ ├── createrepository.json │ │ │ ├── createrepositorywithanonexistentorganization.json │ │ │ ├── createrepositorywithemptyname.json │ │ │ ├── createrepositorywithinvalidname.json │ │ │ ├── createrepositorywithnullname.json │ │ │ ├── createrepositorywithorganization.json │ │ │ ├── deletehook.json │ │ │ ├── failed_login_should_throw_authenticationfailedexception.json │ │ │ ├── gethook.json │ │ │ ├── gethooks.json │ │ │ ├── gethooksonafreshrepository.json │ │ │ ├── gethookswithouthooks.json │ │ │ ├── getloggeduser.json │ │ │ ├── getorganizationsshouldanswercorrectly.json │ │ │ ├── getprovidershouldnotbenullorempty.json │ │ │ ├── getrepositories.json │ │ │ ├── getrepositoriesempty.json │ │ │ ├── getrepositorieswithanonexistentorganization.json │ │ │ ├── getrepositorywithanonexistentorganization.json │ │ │ ├── getrepositorywithemptyname.json │ │ │ ├── getrepositorywithfullname.json │ │ │ ├── getrepositorywithinvalidname.json │ │ │ ├── getrepositorywithname.json │ │ │ ├── getrepositorywithnullname.json │ │ │ ├── getrepositorywithnullorganization.json │ │ │ ├── getrepositorywithorganization.json │ │ │ ├── getrepositorywithorganizationandinvalidname.json │ │ │ ├── getrepositorywithorganizationandnullname.json │ │ │ ├── pushfile.json │ │ │ ├── pushnullpath.json │ │ │ ├── pushnullrepository.json │ │ │ └── searchrepositorieswithnullfilter.json │ │ ├── gitlabservicetest │ │ │ ├── clonerepository.json │ │ │ ├── createhook.json │ │ │ ├── createhookwithnullevents.json │ │ │ ├── createhookwithnullrepository.json │ │ │ ├── createhookwithnullwebhookurl.json │ │ │ ├── createhookwithoutevents.json │ │ │ ├── createhookwithoutsecret.json │ │ │ ├── createrepository.json │ │ │ ├── createrepositorywithanonexistentorganization.json │ │ │ ├── createrepositorywithemptyname.json │ │ │ ├── createrepositorywithinvalidname.json │ │ │ ├── createrepositorywithnullname.json │ │ │ ├── createrepositorywithorganization.json │ │ │ ├── deletehook.json │ │ │ ├── failed_login_should_throw_authenticationfailedexception.json │ │ │ ├── gethook.json │ │ │ ├── gethooks.json │ │ │ ├── gethooksonafreshrepository.json │ │ │ ├── gethookswithouthooks.json │ │ │ ├── getloggeduser.json │ │ │ ├── getorganizationsshouldanswercorrectly.json │ │ │ ├── getprovidershouldnotbenullorempty.json │ │ │ ├── getrepositories.json │ │ │ ├── getrepositoriesempty.json │ │ │ ├── getrepositorieswithanonexistentorganization.json │ │ │ ├── getrepositorieswithanorganization.json │ │ │ ├── getrepositorywithanonexistentorganization.json │ │ │ ├── getrepositorywithemptyname.json │ │ │ ├── getrepositorywithfullname.json │ │ │ ├── getrepositorywithinvalidname.json │ │ │ ├── getrepositorywithname.json │ │ │ ├── getrepositorywithnullname.json │ │ │ ├── getrepositorywithnullorganization.json │ │ │ ├── getrepositorywithorganization.json │ │ │ ├── getrepositorywithorganizationandinvalidname.json │ │ │ ├── getrepositorywithorganizationandnullname.json │ │ │ ├── pushfile.json │ │ │ ├── pushnullpath.json │ │ │ ├── pushnullrepository.json │ │ │ ├── searchrepositorieswithnamecontaining.json │ │ │ ├── searchrepositorieswithnullfilter.json │ │ │ ├── searchrepositorieswithorganizationandnamecontaining.json │ │ │ └── searchrepositorieswithorganizationandnullfilter.json │ │ └── oauthtokenproviderhoverflytest │ │ │ └── should_fetch_token.json │ │ └── repos │ │ └── unmappable_chars.bundle ├── openshift-service-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── service │ │ └── openshift │ │ └── api │ │ ├── DuplicateProjectException.java │ │ ├── OpenShiftCluster.java │ │ ├── OpenShiftClusterRegistry.java │ │ ├── OpenShiftEnvironment.java │ │ ├── OpenShiftProject.java │ │ ├── OpenShiftResource.java │ │ ├── OpenShiftService.java │ │ ├── OpenShiftServiceFactory.java │ │ ├── OpenShiftUser.java │ │ └── QuotaExceedException.java └── openshift-service-impl │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── fabric8 │ │ │ └── launcher │ │ │ └── service │ │ │ └── openshift │ │ │ ├── impl │ │ │ ├── ExceptionMapper.java │ │ │ ├── Fabric8OpenShiftServiceFactory.java │ │ │ ├── Fabric8OpenShiftServiceImpl.java │ │ │ ├── OpenShiftClusterRegistryImpl.java │ │ │ └── OpenShiftProjectImpl.java │ │ │ └── spi │ │ │ └── OpenShiftServiceSpi.java │ └── resources │ │ ├── META-INF │ │ ├── beans.xml │ │ └── jboss-deployment-structure.xml │ │ └── pipeline-template.yml │ └── test │ ├── java │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── service │ │ └── openshift │ │ └── impl │ │ ├── DeleteOpenShiftProjectRule.java │ │ ├── ExceptionMapperTest.java │ │ ├── Fabric8OpenShiftServiceImplTest.java │ │ ├── OpenShiftClusterRegistryTest.java │ │ ├── OpenShiftProjectImplTest.java │ │ ├── OpenShiftServiceIT.java │ │ ├── OpenShiftUrlTest.java │ │ └── SerializationTest.java │ └── resources │ ├── foo-pipeline-template.yaml │ ├── foo-service-template.yaml │ ├── openshift-clusters.yaml │ └── service.cache.yml └── web ├── pom.xml └── src ├── main ├── java │ └── io │ │ └── fabric8 │ │ └── launcher │ │ └── web │ │ ├── endpoints │ │ ├── AbstractLaunchEndpoint.java │ │ ├── BoosterCatalogEndpoint.java │ │ ├── BoosterDocumentationEndpoint.java │ │ ├── CreatorEndpoint.java │ │ ├── GitEndpoint.java │ │ ├── IndexServlet.java │ │ ├── LaunchEndpoint.java │ │ ├── OpenAPIServlet.java │ │ ├── OpenShiftEndpoint.java │ │ ├── inputs │ │ │ ├── CreatorImportProjectileInput.java │ │ │ ├── DownloadZipProjectileInput.java │ │ │ ├── LaunchProjectileInput.java │ │ │ └── UploadZipProjectileInput.java │ │ ├── models │ │ │ └── GitDetailedUser.java │ │ └── websocket │ │ │ └── MissionControlStatusEndpoint.java │ │ ├── filters │ │ ├── CorsFilter.java │ │ └── gzip │ │ │ ├── GZipFilter.java │ │ │ ├── GZipServletOutputStream.java │ │ │ └── GZipServletResponseWrapper.java │ │ ├── producers │ │ ├── ApplicationTypeBasedProducer.java │ │ ├── AuthorizationTokenProducer.java │ │ ├── CacheProducer.java │ │ ├── GitServiceProducer.java │ │ ├── OpenShiftServiceProducer.java │ │ └── PublicKeyProviderProducer.java │ │ └── providers │ │ ├── AuthenticationFailedExceptionMapper.java │ │ ├── ConstraintViolationExceptionMapper.java │ │ ├── DirectoryReaperImpl.java │ │ ├── IllegalArgumentExceptionMapper.java │ │ ├── IllegalStateExceptionMapper.java │ │ ├── JsonNodeConverter.java │ │ ├── LauncherParamConverterProvider.java │ │ ├── MissionParamConverter.java │ │ └── RuntimeParamConverter.java └── resources │ ├── META-INF │ ├── beans.xml │ ├── openapi.yml │ ├── settings-tmpl.json │ └── undertow-handlers.conf │ ├── application.properties │ ├── default_banner.txt │ ├── logging.properties │ └── sentry.properties └── test └── java └── io └── fabric8 └── launcher └── web ├── endpoints ├── BoosterCatalogEndpointIT.java ├── GitEndpointIT.java ├── OpenAPIServletIT.java ├── inputs │ └── LaunchProjectileInputTest.java ├── models │ └── GitDetailedUserTest.java └── websocket │ ├── MissionControlStatusEndpointIT.java │ ├── StatusTestClientEndpoint.java │ └── TestEventEndpoint.java ├── filters ├── FixedPublicKeyProvider.java ├── NoKeycloakUrlSetSecuredIT.java ├── SecuredEndpoint.java └── SecuredIT.java ├── producers ├── GitServiceProducerTest.java └── OpenShiftServiceProducerTest.java └── providers └── LauncherParamConverterProviderIT.java /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/.gitignore -------------------------------------------------------------------------------- /.ike-prow/test-keeper.yml: -------------------------------------------------------------------------------- 1 | skip_validation_for: 2 | - 'regex{{.*yarn\.lock$}}' 3 | combine_defaults: true -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMMIT_MSG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/COMMIT_MSG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/Dockerfile.build -------------------------------------------------------------------------------- /Dockerfile.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/Dockerfile.deploy -------------------------------------------------------------------------------- /Dockerfile.deploy.rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/Dockerfile.deploy.rhel -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/RELEASE.adoc -------------------------------------------------------------------------------- /base-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base-test/pom.xml -------------------------------------------------------------------------------- /base-test/src/main/java/io/fabric8/launcher/base/test/identity/TokenFixtures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base-test/src/main/java/io/fabric8/launcher/base/test/identity/TokenFixtures.java -------------------------------------------------------------------------------- /base-test/src/main/resources/hoverfly/empty-descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base-test/src/main/resources/hoverfly/empty-descriptor.json -------------------------------------------------------------------------------- /base-test/src/main/resources/hoverfly/hoverfly.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base-test/src/main/resources/hoverfly/hoverfly.jks -------------------------------------------------------------------------------- /base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/pom.xml -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/EnvironmentEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/EnvironmentEnum.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/EnvironmentSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/EnvironmentSupport.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/JsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/JsonUtils.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/Paths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/Paths.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/PosixFilePermissionSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/PosixFilePermissionSupport.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/YamlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/YamlUtils.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/http/AuthorizationType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/http/AuthorizationType.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/http/Authorizations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/http/Authorizations.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/http/HttpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/http/HttpClient.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/http/HttpException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/http/HttpException.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/http/HttpExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/http/HttpExceptionMapper.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/http/Requests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/http/Requests.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/identity/Identity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/identity/Identity.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/identity/IdentityVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/identity/IdentityVisitor.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/identity/RSAPublicKeyConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/identity/RSAPublicKeyConverter.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/identity/TokenIdentity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/identity/TokenIdentity.java -------------------------------------------------------------------------------- /base/src/main/java/io/fabric8/launcher/base/identity/UserPasswordIdentity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/java/io/fabric8/launcher/base/identity/UserPasswordIdentity.java -------------------------------------------------------------------------------- /base/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/EnvironmentEnumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/EnvironmentEnumTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/EnvironmentSupportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/EnvironmentSupportTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/JsonUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/JsonUtilsTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/PathsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/PathsTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/PosixFilePermissionSupportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/PosixFilePermissionSupportTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/YamlUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/YamlUtilsTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/http/AuthorizationsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/http/AuthorizationsTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/http/HttpClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/http/HttpClientTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/identity/IdentityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/identity/IdentityTest.java -------------------------------------------------------------------------------- /base/src/test/java/io/fabric8/launcher/base/identity/IdentityVisitorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/java/io/fabric8/launcher/base/identity/IdentityVisitorTest.java -------------------------------------------------------------------------------- /base/src/test/resources/hoverfly/httpclienttest/should_execute_and_fail_correctly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/resources/hoverfly/httpclienttest/should_execute_and_fail_correctly.json -------------------------------------------------------------------------------- /base/src/test/resources/hoverfly/httpclienttest/should_execute_correctly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/resources/hoverfly/httpclienttest/should_execute_correctly.json -------------------------------------------------------------------------------- /base/src/test/resources/hoverfly/httpclienttest/should_post_and_parse_correctly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/resources/hoverfly/httpclienttest/should_post_and_parse_correctly.json -------------------------------------------------------------------------------- /base/src/test/resources/hoverfly/httpclienttest/should_read_json_correctly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/resources/hoverfly/httpclienttest/should_read_json_correctly.json -------------------------------------------------------------------------------- /base/src/test/resources/hoverfly/httpclienttest/should_read_json_correctly_async.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/resources/hoverfly/httpclienttest/should_read_json_correctly_async.json -------------------------------------------------------------------------------- /base/src/test/resources/io/fabric8/launcher/base/pathtest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/base/src/test/resources/io/fabric8/launcher/base/pathtest.zip -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /cico_build_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/cico_build_deploy.sh -------------------------------------------------------------------------------- /clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/clusters.yaml -------------------------------------------------------------------------------- /core/core-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/pom.xml -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/AsyncBoom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/AsyncBoom.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/Boom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/Boom.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/DefaultMissionControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/DefaultMissionControl.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/MissionControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/MissionControl.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/Projectile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/Projectile.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/ProjectileContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/ProjectileContext.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/events/StatusEventKind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/events/StatusEventKind.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/events/StatusMessageEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/events/StatusMessageEvent.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/api/security/Secured.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/api/security/Secured.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/spi/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/spi/Application.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/spi/DirectoryReaper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/spi/DirectoryReaper.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/spi/IdentityProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/spi/IdentityProvider.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/spi/ProjectileEnricher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/spi/ProjectileEnricher.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/spi/ProjectilePreparer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/spi/ProjectilePreparer.java -------------------------------------------------------------------------------- /core/core-api/src/main/java/io/fabric8/launcher/core/spi/PublicKeyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/java/io/fabric8/launcher/core/spi/PublicKeyProvider.java -------------------------------------------------------------------------------- /core/core-api/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-api/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /core/core-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/pom.xml -------------------------------------------------------------------------------- /core/core-impl/src/main/java/io/fabric8/launcher/core/impl/CoreEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/java/io/fabric8/launcher/core/impl/CoreEnvironment.java -------------------------------------------------------------------------------- /core/core-impl/src/main/java/io/fabric8/launcher/core/impl/MissionControlImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/java/io/fabric8/launcher/core/impl/MissionControlImpl.java -------------------------------------------------------------------------------- /core/core-impl/src/main/java/io/fabric8/launcher/core/impl/filters/JWTValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/java/io/fabric8/launcher/core/impl/filters/JWTValidator.java -------------------------------------------------------------------------------- /core/core-impl/src/main/java/io/fabric8/launcher/core/impl/filters/SecuredFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/java/io/fabric8/launcher/core/impl/filters/SecuredFilter.java -------------------------------------------------------------------------------- /core/core-impl/src/main/java/io/fabric8/launcher/core/impl/steps/GitSteps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/java/io/fabric8/launcher/core/impl/steps/GitSteps.java -------------------------------------------------------------------------------- /core/core-impl/src/main/java/io/fabric8/launcher/core/impl/steps/OpenShiftSteps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/java/io/fabric8/launcher/core/impl/steps/OpenShiftSteps.java -------------------------------------------------------------------------------- /core/core-impl/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /core/core-impl/src/main/resources/vscode/fuse/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/resources/vscode/fuse/extensions.json -------------------------------------------------------------------------------- /core/core-impl/src/main/resources/vscode/nodejs/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/resources/vscode/nodejs/extensions.json -------------------------------------------------------------------------------- /core/core-impl/src/main/resources/vscode/spring-boot/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/resources/vscode/spring-boot/extensions.json -------------------------------------------------------------------------------- /core/core-impl/src/main/resources/vscode/thorntail/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/resources/vscode/thorntail/extensions.json -------------------------------------------------------------------------------- /core/core-impl/src/main/resources/vscode/vert.x/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/main/resources/vscode/vert.x/extensions.json -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/arquillian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/arquillian.xml -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/configuration/arquillian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/configuration/arquillian.xml -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/extra-files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/extra-files.zip -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/package-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/package-result.json -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/package.json -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/booster-catalog.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/booster-catalog.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-circuit-breaker-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-circuit-breaker-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-circuit-breaker.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-circuit-breaker.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-configmap-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-configmap-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-configmap.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-configmap.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-health-check-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-health-check-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-health-check.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-health-check.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-crud-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-crud-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-crud.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-crud.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-secured-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-secured-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-secured.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http-secured.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/nodejs-rest-http.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/spring-boot-configmap-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/spring-boot-configmap-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/spring-boot-crud-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/spring-boot-crud-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/spring-boot-http-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/spring-boot-http-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-circuit-breaker-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-circuit-breaker-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-configmap-booster-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-configmap-booster-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-configmap-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-configmap-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-crud-booster-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-crud-booster-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-crud-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-crud-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-health-checks-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-health-checks-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-http-booster-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-http-booster-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-http-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-http-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/vertx-secured-http-booster.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/vertx-secured-http-booster.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-circuit-breaker-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-circuit-breaker-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-circuit-breaker.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-circuit-breaker.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-configmap-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-configmap-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-configmap.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-configmap.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-health-check-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-health-check-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-health-check.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-health-check.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-crud-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-crud-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-crud.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-crud.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-redhat.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-redhat.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-secured.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http-secured.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/boosters/wfswarm-rest-http.bundle -------------------------------------------------------------------------------- /core/core-impl/src/test/resources/repos/custom-catalogs/gastaldi-booster-catalog.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/core/core-impl/src/test/resources/repos/custom-catalogs/gastaldi-booster-catalog.bundle -------------------------------------------------------------------------------- /creator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/README.md -------------------------------------------------------------------------------- /creator/creator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/creator -------------------------------------------------------------------------------- /creator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/pom.xml -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/AppImages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/AppImages.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityComponent.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityDatabase.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityHealth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityHealth.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityImport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityImport.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityRest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityRest.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityWebApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityWebApp.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityWelcome.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/CapabilityWelcome.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/DatabaseCrudWildfly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/DatabaseCrudWildfly.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/ImportCodebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/ImportCodebase.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/MavenSetup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/MavenSetup.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/README.md -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/RuntimeBaseSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/RuntimeBaseSupport.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/WelcomeApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/WelcomeApp.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/catalog/list.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/cli/analyze.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/cli/analyze.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/cli/apply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/cli/apply.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/cli/generate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/cli/generate.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/cli/list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/cli/list.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/cli/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/cli/main.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/analysis/analyze.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/analysis/analyze.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/analysis/git.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/analysis/git.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/Generator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/Generator.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/enums.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/enums.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/generators.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/generators.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/info.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/info.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/io.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/catalog/io.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/data/api.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/data/api.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/data/json.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/data/json.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/data/yaml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/data/yaml.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/deploy/apply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/deploy/apply.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/deploy/descriptors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/deploy/descriptors.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/deploy/io.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/deploy/io.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/maven/helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/maven/helpers.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/nodejs/helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/nodejs/helpers.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/oc/commands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/oc/commands.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/Resources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/Resources.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/helpers.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/images.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/images.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/io.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/io.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/templates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/resource/templates.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/template/Transform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/template/Transform.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/template/transformers/cases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/template/transformers/cases.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/template/transformers/id.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/template/transformers/id.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/types.kt -------------------------------------------------------------------------------- /creator/src/main/kotlin/io/fabric8/launcher/creator/core/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/kotlin/io/fabric8/launcher/creator/core/utils.kt -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/app-images/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/app-images/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/app-images/resources/fabric8_s2i-java.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/app-images/resources/fabric8_s2i-java.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/app-images/resources/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/app-images/resources/mysql.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/app-images/resources/postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/app-images/resources/postgresql.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/capability-component/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/capability-component/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/capability-database/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/capability-database/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/capability-health/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/capability-health/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/capability-import/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/capability-import/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/capability-rest/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/capability-rest/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/capability-web-app/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/capability-web-app/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/capability-welcome/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/capability-welcome/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-dotnet/files/Models/Fruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-dotnet/files/Models/Fruit.cs -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-dotnet/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-dotnet/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-dotnet/merge/csproj-mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-dotnet/merge/csproj-mysql -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-dotnet/merge/dbcontext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-dotnet/merge/dbcontext -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-dotnet/merge/dbinitialize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-dotnet/merge/dbinitialize -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-dotnet/merge/efcore: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-nodejs/files/lib/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-nodejs/files/lib/db/index.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-nodejs/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-nodejs/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-nodejs/merge/app.merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-nodejs/merge/app.merge.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-nodejs/merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-nodejs/merge/package.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-openliberty/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-openliberty/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-quarkus/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-quarkus/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-quarkus/merge/pom.mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-quarkus/merge/pom.mysql.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-springboot/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-springboot/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-thorntail/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-thorntail/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-vertx/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-vertx/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-vertx/merge-redhat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-vertx/merge-redhat/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-vertx/merge/pom.mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-vertx/merge/pom.mysql.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-wildfly/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-wildfly/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-crud-wildfly/merge/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-crud-wildfly/merge/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-mysql/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-mysql/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-postgresql/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-postgresql/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-secret/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-secret/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/database-secret/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/database-secret/resources/secret.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/enums.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/enums.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/import-codebase/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/import-codebase/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/language-csharp/files/gap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/language-csharp/files/gap -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/language-csharp/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/language-csharp/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/language-java/files/gap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/language-java/files/gap -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/language-java/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/language-java/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/language-nodejs/files/gap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/language-nodejs/files/gap -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/language-nodejs/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/language-nodejs/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/maven-setup/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/maven-setup/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-dotnet/files/Models/Greeting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-dotnet/files/Models/Greeting.cs -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-dotnet/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-dotnet/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-nodejs/files/greeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-nodejs/files/greeting.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-nodejs/files/test/greeting-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-nodejs/files/test/greeting-test.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-nodejs/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-nodejs/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-nodejs/merge/app.merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-nodejs/merge/app.merge.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-openliberty/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-openliberty/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-openliberty/merge/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-openliberty/merge/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-quarkus/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-quarkus/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-springboot/files/src/main/resources/static/application.properties: -------------------------------------------------------------------------------- 1 | cxf.path:/api 2 | cxf.jaxrs.component-scan:true 3 | -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-springboot/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-springboot/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-springboot/merge/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-springboot/merge/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-thorntail/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-thorntail/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-thorntail/merge/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-thorntail/merge/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-vertx/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-vertx/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-vertx/merge/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-vertx/merge/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-wildfly/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-wildfly/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/rest-wildfly/merge/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/rest-wildfly/merge/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/angular.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/browserslist -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/e2e/src/app.po.ts -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/e2e/tsconfig.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/karma.conf.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/package.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/favicon.ico -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/index.html -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/main.ts -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/polyfills.ts -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/styles.css -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/src/test.ts -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/tsconfig.app.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/tsconfig.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/tsconfig.spec.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/files/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/files/tslint.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-angular/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-angular/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-base-support/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-base-support/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-base-support/files/gap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-base-support/files/gap -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-base-support/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-base-support/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | out/ 3 | -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/Program.cs -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/Startup.cs -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/appsettings.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/files.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-dotnet/files/files.csproj -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-dotnet/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-dotnet/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/app.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/bin/www -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/package.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-nodejs/files/public/index.html -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-nodejs/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-nodejs/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/LICENSE -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-openliberty/files/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-openliberty/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-openliberty/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/LICENSE -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-quarkus/files/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-quarkus/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-quarkus/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/package.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/public/favicon.ico -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/public/index.html -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/public/logo192.png -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/public/logo512.png -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/public/manifest.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/public/robots.txt -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/src/App.css -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/src/App.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/src/App.test.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/src/index.css -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/src/index.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/src/logo.svg -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/files/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/files/src/serviceWorker.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-react/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-react/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-springboot/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-springboot/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-springboot/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-springboot/files/LICENSE -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-springboot/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-springboot/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-springboot/files/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-springboot/files/mvnw -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-springboot/files/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-springboot/files/mvnw.cmd -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-springboot/files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-springboot/files/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-springboot/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-springboot/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/LICENSE -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-thorntail/files/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-thorntail/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-thorntail/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-thorntail/merge-community/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-thorntail/merge-community/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-thorntail/merge-redhat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-thorntail/merge-redhat/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vertx/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vertx/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vertx/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vertx/files/LICENSE -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vertx/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vertx/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vertx/files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vertx/files/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vertx/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vertx/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vertx/merge-community/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vertx/merge-community/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vertx/merge-redhat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vertx/merge-redhat/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/babel.config.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/package.json -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/public/favicon.ico -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/public/index.html -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/src/App.vue -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/src/assets/logo.png -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/files/src/main.js -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-vuejs/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-vuejs/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/.gitignore -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/LICENSE -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/pom.xml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-wildfly/files/src/main/webapp/health/index.html: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/runtime-wildfly/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/runtime-wildfly/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/welcome-app/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/welcome-app/files/README.md -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/welcome-app/files/gap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/welcome-app/files/gap -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/welcome-app/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/welcome-app/info.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/catalog/welcome-app/templates/welcome-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/catalog/welcome-app/templates/welcome-app.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/fileattr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/fileattr.yaml -------------------------------------------------------------------------------- /creator/src/main/resources/META-INF/resource/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/main/resources/META-INF/resource/images.yaml -------------------------------------------------------------------------------- /creator/src/test/kotlin/io/fabric8/launcher/creator/core/catalog/infotest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/io/fabric8/launcher/creator/core/catalog/infotest.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/io/fabric8/launcher/creator/core/catalog/validatetest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/io/fabric8/launcher/creator/core/catalog/validatetest.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/io/fabric8/launcher/creator/core/resource/resourcetest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/io/fabric8/launcher/creator/core/resource/resourcetest.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/io/fabric8/launcher/creator/core/template/templatetest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/io/fabric8/launcher/creator/core/template/templatetest.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/IntegrationTestsIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/IntegrationTestsIT.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/config.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/functions.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/ochelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/ochelpers.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/tests/DatabaseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/tests/DatabaseTests.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/tests/HealthTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/tests/HealthTests.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/tests/RestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/tests/RestTests.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/tests/WebAppTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/tests/WebAppTests.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/tests/list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/tests/list.kt -------------------------------------------------------------------------------- /creator/src/test/kotlin/it/types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/kotlin/it/types.kt -------------------------------------------------------------------------------- /creator/src/test/resources/io/fabric8/launcher/creator/core/resource/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/src/test/resources/io/fabric8/launcher/creator/core/resource/resources.yaml -------------------------------------------------------------------------------- /creator/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default=per_class 2 | -------------------------------------------------------------------------------- /creator/update-platform-generators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/creator/update-platform-generators.sh -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/docker.sh -------------------------------------------------------------------------------- /frontend/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/.codecov.yml -------------------------------------------------------------------------------- /frontend/.env.docker.staging-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/.env.docker.staging-api -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/CHANGELOG.md -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/RELEASE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/RELEASE.adoc -------------------------------------------------------------------------------- /frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/assembly.xml -------------------------------------------------------------------------------- /frontend/jest.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/jest.config.base.js -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/lerna.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.development: -------------------------------------------------------------------------------- 1 | PORT=8089 -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.local-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.env.local-api -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.mock-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.env.mock-api -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.openshift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.env.openshift -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.env.production -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.production-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.env.production-api -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.staging-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.env.staging-api -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.env.test -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.storybook/addons.js -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.storybook/config.js -------------------------------------------------------------------------------- /frontend/packages/launcher-app/.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/.storybook/webpack.config.js -------------------------------------------------------------------------------- /frontend/packages/launcher-app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/CHANGELOG.md -------------------------------------------------------------------------------- /frontend/packages/launcher-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/jest.config.js -------------------------------------------------------------------------------- /frontend/packages/launcher-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/package.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/public/index.html -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/RHD-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/RHD-logo.svg -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/background.png -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/runtime/fuse-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/runtime/fuse-logo.png -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/runtime/nodejs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/runtime/nodejs-logo.png -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/runtime/openliberty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/runtime/openliberty.svg -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/runtime/snowdrop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/runtime/snowdrop.svg -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/runtime/thorntail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/runtime/thorntail.svg -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/assets/logo/runtime/vertx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/assets/logo/runtime/vertx.svg -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/config.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/launcher-app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/launcher-app.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/launcher-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/launcher-app.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/layout.module.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/login-page.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/login-page.module.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/login-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/login-page.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/app/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/app/logo.svg -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/auth-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/auth-context.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/auth-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/auth-router.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/authentication-api-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/authentication-api-factory.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/authentication-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/authentication-api.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/impl/authentication-api-react-state-proxy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/impl/authentication-api-react-state-proxy.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/impl/keycloak-authentication-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/impl/keycloak-authentication-api.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/impl/mock-authentication-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/impl/mock-authentication-api.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/impl/no-authentication-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/impl/no-authentication-api.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/impl/openshift-authentication-api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/impl/openshift-authentication-api.spec.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/impl/openshift-authentication-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/impl/openshift-authentication-api.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/auth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/auth/types.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-capabilities.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-clusters.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-enums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-enums.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-example-catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-example-catalog.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-git-providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-git-providers.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-git-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-git-user.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-import-analyze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-import-analyze.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/data-examples/mock-quarkus-extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/data-examples/mock-quarkus-extensions.json -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/helpers/launchers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/helpers/launchers.spec.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/helpers/launchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/helpers/launchers.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/helpers/locations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/helpers/locations.spec.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/helpers/locations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/helpers/locations.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/helpers/mock-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/helpers/mock-helpers.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/helpers/preconditions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/helpers/preconditions.spec.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/helpers/preconditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/helpers/preconditions.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/http.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/http.service.spec.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/http.service.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/impl/default.launcher.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/impl/default.launcher.client.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/impl/mock.launcher.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/impl/mock.launcher.client.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/impl/with-cache.launcher.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/impl/with-cache.launcher.client.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/launcher-api.md: -------------------------------------------------------------------------------- 1 | ### Some explaination might be in order -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/launcher.client.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/launcher.client.factory.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/launcher.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/launcher.client.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/client/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/client/types.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/contexts/authorization-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/contexts/authorization-context.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/contexts/launcher-client-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/contexts/launcher-client-context.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/contexts/launcher-client-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/contexts/launcher-client-provider.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/__tests__/create-new-app-flow.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/__tests__/create-new-app-flow.spec.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/__tests__/deploy-example-app-flow.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/__tests__/deploy-example-app-flow.spec.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/__tests__/flow-helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/__tests__/flow-helpers.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/__tests__/flows.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/__tests__/flows.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/__tests__/import-existing-flow.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/__tests__/import-existing-flow.spec.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/create-new-app-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/create-new-app-flow.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/deploy-example-app-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/deploy-example-app-flow.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/import-existing-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/import-existing-flow.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/launch-flow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/launch-flow.module.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/launch-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/launch-flow.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/launcher-client-adapters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/launcher-client-adapters.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/flows/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/flows/types.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/__tests__/forms.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/__tests__/forms.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/__tests__/overviews.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/__tests__/overviews.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/backend-hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/backend-hub.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/deployment-hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/deployment-hub.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/dest-repository-hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/dest-repository-hub.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/example-hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/example-hub.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/frontend-hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/frontend-hub.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/src-repository-hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/src-repository-hub.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/hubs/welcome-app-hub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/hubs/welcome-app-hub.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/index.css -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/index.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/launcher/__tests__/launcher.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/launcher/__tests__/launcher.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/launcher/launcher.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/launcher/launcher.module.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/launcher/launcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/launcher/launcher.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/loaders/buildimage-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/loaders/buildimage-loader.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/loaders/enum-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/loaders/enum-loader.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/loaders/example-catalog-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/loaders/example-catalog-loader.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/loaders/git-info-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/loaders/git-info-loader.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/loaders/new-app-capabilities-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/loaders/new-app-capabilities-loader.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/loaders/new-app-runtimes-loaders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/loaders/new-app-runtimes-loaders.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/loaders/openshiftcluster-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/loaders/openshiftcluster-loader.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/next-steps/__tests__/misc.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/next-steps/__tests__/misc.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/next-steps/download-next-steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/next-steps/download-next-steps.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/next-steps/launch-next-steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/next-steps/launch-next-steps.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/next-steps/processing-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/next-steps/processing-app.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/buildimage-picker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/buildimage-picker.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/capabilities-picker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/capabilities-picker.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/cluster-picker.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/cluster-picker.spec.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/cluster-picker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/cluster-picker.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/example-picker.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/example-picker.spec.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/example-picker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/example-picker.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/git-url-picker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/git-url-picker.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/project-name-input.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/project-name-input.spec.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/__tests__/runtime-picker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/__tests__/runtime-picker.stories.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/buildimage-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/buildimage-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/capabilities-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/capabilities-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/capability-field-enum-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/capability-field-enum-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/cluster-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/cluster-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/environmentvars-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/environmentvars-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/example-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/example-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/git-url-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/git-url-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/project-name-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/project-name-input.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/repository-picker.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/repository-picker.module.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/runtime-picker.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/runtime-picker.module.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/runtime-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/runtime-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/pickers/user-repository-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/pickers/user-repository-picker.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/react-router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/react-router.d.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/router/use-router.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/router/use-router.spec.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/router/use-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/router/use-router.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/sentry-boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/sentry-boundary.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-app/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/src/service-worker.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-app/tsconfig.json -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/.env.development: -------------------------------------------------------------------------------- 1 | PORT=8890 2 | 3 | REACT_APP_MODE=mock -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/.env.mock-api: -------------------------------------------------------------------------------- 1 | REACT_APP_MODE=mock 2 | -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/.env.production: -------------------------------------------------------------------------------- 1 | REACT_APP_MODE=api -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/.env.test: -------------------------------------------------------------------------------- 1 | REACT_APP_MODE=mock -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/.gitignore -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/.nvmrc: -------------------------------------------------------------------------------- 1 | v10.10.0 2 | -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/CHANGELOG.md -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/Dockerfile -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/LICENSE -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/README.md -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/api/crud-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/api/crud-openapi.json -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/api/crud-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/api/crud-openapi.yaml -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/api/health-check-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/api/health-check-openapi.json -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/api/health-check-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/api/health-check-openapi.yaml -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/api/http-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/api/http-openapi.json -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/api/http-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/api/http-openapi.yaml -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/docker_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/docker_push.sh -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/jest.config.js -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/nginx.conf -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/package.json -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/public/img/amq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/public/img/amq.png -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/public/img/openshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/public/img/openshift.png -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/public/img/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/public/img/postgresql.png -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/public/img/red-hat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/public/img/red-hat-logo.png -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/public/img/vertx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/public/img/vertx.jpg -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/public/index.html -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/scripts/config-tmpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/scripts/config-tmpl.json -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/scripts/entrypoint.sh -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/App.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/App.test.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/App.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/HttpApiContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/HttpApiContext.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/capabilities/Capability.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/capabilities/Capability.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/capabilities/rest/RestCapability.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/capabilities/rest/RestCapability.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/components/CapabilityCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/components/CapabilityCard.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/components/CapabilityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/components/CapabilityCard.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/components/DockerImageLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/components/DockerImageLink.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/components/InfoCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/components/InfoCard.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/components/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/components/InfoCard.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/config/AppDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/config/AppDefinition.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/config/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/config/appConfig.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/config/capabilitiesConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/config/capabilitiesConfig.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/config/mockAppConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/config/mockAppConfig.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/infos/CloudDeploymentInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/infos/CloudDeploymentInfo.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/infos/CodeBaseInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/infos/CodeBaseInfo.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/app/infos/PartInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/app/infos/PartInfo.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/assets/img/openshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/assets/img/openshift.png -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/assets/img/short-paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/assets/img/short-paragraph.png -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/assets/logo/RHD-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/assets/logo/RHD-logo.svg -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/index.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/index.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/service-worker.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/Console.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/Console.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/Console.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/Console.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/ExternalLink.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/HttpRequest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/HttpRequest.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/HttpRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/HttpRequest.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/RequestTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/RequestTitle.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/ShellCommand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/ShellCommand.scss -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/ShellCommand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/ShellCommand.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/components/SourceMappingLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/components/SourceMappingLink.tsx -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/utils/HttpApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/utils/HttpApi.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/utils/Locations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/utils/Locations.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/utils/Preconditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/utils/Preconditions.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/shared/utils/Strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/shared/utils/Strings.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/src/typings.d.ts -------------------------------------------------------------------------------- /frontend/packages/launcher-welcome-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/packages/launcher-welcome-app/tsconfig.json -------------------------------------------------------------------------------- /frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/pom.xml -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/tslint.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /git-providers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/git-providers.yaml -------------------------------------------------------------------------------- /ide-configs/idea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/ide-configs/idea/README.md -------------------------------------------------------------------------------- /ide-configs/idea/fabric8-launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/ide-configs/idea/fabric8-launcher.xml -------------------------------------------------------------------------------- /launcher-env-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/launcher-env-template.sh -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/openshift/README.md -------------------------------------------------------------------------------- /openshift/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/openshift/template.yaml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/pom.xml -------------------------------------------------------------------------------- /services/git-service-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-api/pom.xml -------------------------------------------------------------------------------- /services/git-service-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/pom.xml -------------------------------------------------------------------------------- /services/git-service-impl/src/main/java/io/fabric8/launcher/service/git/Gits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/main/java/io/fabric8/launcher/service/git/Gits.java -------------------------------------------------------------------------------- /services/git-service-impl/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /services/git-service-impl/src/test/java/io/fabric8/launcher/service/git/GitsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/java/io/fabric8/launcher/service/git/GitsTest.java -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/arquillian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/arquillian.xml -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/giteaservicetest/gethook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/giteaservicetest/gethook.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/giteaservicetest/gethooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/giteaservicetest/gethooks.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/giteaservicetest/pushfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/giteaservicetest/pushfile.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/githubservicetest/gethook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/githubservicetest/gethook.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/githubservicetest/gethooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/githubservicetest/gethooks.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/githubservicetest/pushfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/githubservicetest/pushfile.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/gitlabservicetest/gethook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/gitlabservicetest/gethook.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/gitlabservicetest/gethooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/gitlabservicetest/gethooks.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/hoverfly/gitlabservicetest/pushfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/hoverfly/gitlabservicetest/pushfile.json -------------------------------------------------------------------------------- /services/git-service-impl/src/test/resources/repos/unmappable_chars.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/git-service-impl/src/test/resources/repos/unmappable_chars.bundle -------------------------------------------------------------------------------- /services/openshift-service-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-api/pom.xml -------------------------------------------------------------------------------- /services/openshift-service-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-impl/pom.xml -------------------------------------------------------------------------------- /services/openshift-service-impl/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-impl/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /services/openshift-service-impl/src/main/resources/pipeline-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-impl/src/main/resources/pipeline-template.yml -------------------------------------------------------------------------------- /services/openshift-service-impl/src/test/resources/foo-pipeline-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-impl/src/test/resources/foo-pipeline-template.yaml -------------------------------------------------------------------------------- /services/openshift-service-impl/src/test/resources/foo-service-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-impl/src/test/resources/foo-service-template.yaml -------------------------------------------------------------------------------- /services/openshift-service-impl/src/test/resources/openshift-clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-impl/src/test/resources/openshift-clusters.yaml -------------------------------------------------------------------------------- /services/openshift-service-impl/src/test/resources/service.cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/services/openshift-service-impl/src/test/resources/service.cache.yml -------------------------------------------------------------------------------- /web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/pom.xml -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/AbstractLaunchEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/AbstractLaunchEndpoint.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/BoosterCatalogEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/BoosterCatalogEndpoint.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/BoosterDocumentationEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/BoosterDocumentationEndpoint.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/CreatorEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/CreatorEndpoint.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/GitEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/GitEndpoint.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/IndexServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/IndexServlet.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/LaunchEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/LaunchEndpoint.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/OpenAPIServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/OpenAPIServlet.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/OpenShiftEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/OpenShiftEndpoint.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/inputs/LaunchProjectileInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/inputs/LaunchProjectileInput.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/endpoints/models/GitDetailedUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/endpoints/models/GitDetailedUser.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/filters/CorsFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/filters/CorsFilter.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/filters/gzip/GZipFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/filters/gzip/GZipFilter.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/filters/gzip/GZipServletOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/filters/gzip/GZipServletOutputStream.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/producers/ApplicationTypeBasedProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/producers/ApplicationTypeBasedProducer.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/producers/AuthorizationTokenProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/producers/AuthorizationTokenProducer.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/producers/CacheProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/producers/CacheProducer.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/producers/GitServiceProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/producers/GitServiceProducer.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/producers/OpenShiftServiceProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/producers/OpenShiftServiceProducer.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/producers/PublicKeyProviderProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/producers/PublicKeyProviderProducer.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/providers/DirectoryReaperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/providers/DirectoryReaperImpl.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/providers/IllegalStateExceptionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/providers/IllegalStateExceptionMapper.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/providers/JsonNodeConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/providers/JsonNodeConverter.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/providers/MissionParamConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/providers/MissionParamConverter.java -------------------------------------------------------------------------------- /web/src/main/java/io/fabric8/launcher/web/providers/RuntimeParamConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/java/io/fabric8/launcher/web/providers/RuntimeParamConverter.java -------------------------------------------------------------------------------- /web/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /web/src/main/resources/META-INF/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/resources/META-INF/openapi.yml -------------------------------------------------------------------------------- /web/src/main/resources/META-INF/settings-tmpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/resources/META-INF/settings-tmpl.json -------------------------------------------------------------------------------- /web/src/main/resources/META-INF/undertow-handlers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/resources/META-INF/undertow-handlers.conf -------------------------------------------------------------------------------- /web/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/resources/application.properties -------------------------------------------------------------------------------- /web/src/main/resources/default_banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/resources/default_banner.txt -------------------------------------------------------------------------------- /web/src/main/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/main/resources/logging.properties -------------------------------------------------------------------------------- /web/src/main/resources/sentry.properties: -------------------------------------------------------------------------------- 1 | stacktrace.app.packages=io.fabric8.launcher -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/endpoints/BoosterCatalogEndpointIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/endpoints/BoosterCatalogEndpointIT.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/endpoints/GitEndpointIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/endpoints/GitEndpointIT.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/endpoints/OpenAPIServletIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/endpoints/OpenAPIServletIT.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/endpoints/models/GitDetailedUserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/endpoints/models/GitDetailedUserTest.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/endpoints/websocket/TestEventEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/endpoints/websocket/TestEventEndpoint.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/filters/FixedPublicKeyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/filters/FixedPublicKeyProvider.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/filters/NoKeycloakUrlSetSecuredIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/filters/NoKeycloakUrlSetSecuredIT.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/filters/SecuredEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/filters/SecuredEndpoint.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/filters/SecuredIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/filters/SecuredIT.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/producers/GitServiceProducerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/producers/GitServiceProducerTest.java -------------------------------------------------------------------------------- /web/src/test/java/io/fabric8/launcher/web/producers/OpenShiftServiceProducerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-launcher/launcher-application/HEAD/web/src/test/java/io/fabric8/launcher/web/producers/OpenShiftServiceProducerTest.java --------------------------------------------------------------------------------