UNPKG

generator-pyhipster

Version:

Python (Flask) + Angular/React/Vue in one handy generator

75 lines (72 loc) 2.73 kB
/** * Copyright 2013-2022 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. */ const Generators = { GENERATOR_ADD: 'add', GENERATOR_APP: 'app', GENERATOR_AWS: 'aws', GENERATOR_AZURE_APP_SERVICE: 'azure-app-service', GENERATOR_AZURE_SPRING_CLOUD: 'azure-spring-cloud', GENERATOR_BASE: 'base', GENERATOR_BOOTSTRAP: 'bootstrap', GENERATOR_BOOTSTRAP_APPLICATION: 'bootstrap-application', GENERATOR_CI_CD: 'ci-cd', /* @deprecated */ GENERATOR_CICD: 'ci-cd', GENERATOR_CLIENT: 'client', GENERATOR_CLOUDFOUNDRY: 'cloudfoundry', GENERATOR_COMMON: 'common', GENERATOR_CYPRESS: 'cypress', GENERATOR_DATABASE_CHANGELOG: 'database-changelog', GENERATOR_DATABASE_CHANGELOG_LIQUIBASE: 'database-changelog-liquibase', GENERATOR_DOCKER_COMPOSE: 'docker-compose', GENERATOR_ENTITIES: 'entities', GENERATOR_ENTITIES_CLIENT: 'entities-client', GENERATOR_ENTITY: 'entity', GENERATOR_ENTITY_CLIENT: 'entity-client', GENERATOR_ENTITY_I_18_N: 'entity-i18n', /* @deprecated */ GENERATOR_ENTITY_I18N: 'entity-i18n', GENERATOR_ENTITY_SERVER: 'entity-server', GENERATOR_EXPORT_JDL: 'export-jdl', GENERATOR_GAE: 'gae', GENERATOR_GENERATE_BLUEPRINT: 'generate-blueprint', GENERATOR_GRADLE: 'gradle', GENERATOR_HEROKU: 'heroku', GENERATOR_INFO: 'info', GENERATOR_INIT: 'init', GENERATOR_JAVA: 'java', GENERATOR_KUBERNETES: 'kubernetes', GENERATOR_KUBERNETES_HELM: 'kubernetes-helm', GENERATOR_KUBERNETES_KNATIVE: 'kubernetes-knative', GENERATOR_LANGUAGES: 'languages', GENERATOR_MAVEN: 'maven', GENERATOR_OPENAPI_CLIENT: 'openapi-client', GENERATOR_OPENSHIFT: 'openshift', GENERATOR_PAGE: 'page', GENERATOR_PROJECT_NAME: 'project-name', GENERATOR_SERVER: 'server', GENERATOR_SERVER_FLASK: 'server-flask', GENERATOR_SPRING_BOOT: 'spring-boot', GENERATOR_SPRING_CONTROLLER: 'spring-controller', GENERATOR_SPRING_SERVICE: 'spring-service', GENERATOR_UPGRADE: 'upgrade', GENERATOR_UPGRADE_CONFIG: 'upgrade-config', GENERATOR_WORKSPACES: 'workspaces', }; module.exports = Generators;