UNPKG

gen-jhipster

Version:

VHipster - Spring Boot + Angular/React/Vue in one handy generator

67 lines (66 loc) 2.67 kB
/** * Copyright 2013-2026 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { APPLICATION_TYPE_MICROSERVICE } from "../../lib/core/application-types.js"; import { authenticationTypes, monitoringTypes } from "../../lib/jhipster/index.js"; import { asWriteFilesSection } from "../base-application/support/index.js"; import { asWritingWorkspacesTask } from "../base-workspaces/support/task-type-inference.js"; const { PROMETHEUS } = monitoringTypes; const { OAUTH2 } = authenticationTypes; export const files = asWriteFilesSection({ dockerCompose: [ { templates: ['docker-compose.yml', 'README-DOCKER-COMPOSE.md'], }, ], registry: [ { condition: deployment => deployment.serviceDiscoveryAny, templates: ['central-server-config/application.yml'], }, ], keycloak: [ { condition: deployment => deployment.authenticationType === OAUTH2 && deployment.applicationType !== APPLICATION_TYPE_MICROSERVICE, templates: ['realm-config/keycloak-health-check.sh', 'realm-config/jhipster-realm.json'], }, ], prometheus: [ { condition: deployment => deployment.monitoring === PROMETHEUS, templates: ['prometheus-conf/prometheus.yml', 'prometheus-conf/alert_rules.yml', 'alertmanager-conf/config.yml'], }, ], apisix: [ { condition: deployment => deployment.apisixGateway, templates: ['apisix-conf/apisix/config.yaml', 'apisix-conf/dashboard/config.yaml', 'apisix-conf/etcd/etcd.conf.yaml'], }, { condition: deployment => deployment.apisixGateway, transform: false, templates: ['apisix-conf/custom-plugins/unified-params.lua'], }, ], }); export const writeFiles = asWritingWorkspacesTask(async function writeFiles({ deployment }) { await this.writeFiles({ sections: files, context: deployment, }); });