From 54fe40cbddbf70272ef8bc49869ab60e03b2aab3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Delbrayelle?= Date: Thu, 14 May 2020 23:31:01 +0200 Subject: [PATCH] jhipster: add page (#4047) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Zlatan Vasović Co-authored-by: Iván Hernández Cazorla Co-authored-by: Andrik Albuquerque --- pages/common/jhipster.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/jhipster.md diff --git a/pages/common/jhipster.md b/pages/common/jhipster.md new file mode 100644 index 000000000..cd25a49b6 --- /dev/null +++ b/pages/common/jhipster.md @@ -0,0 +1,36 @@ +# jhipster + +> Web application generator using either monolithic or microservices architecture. +> More information: . + +- Generate a simple full-stack project (monolithic or microservices): + +`jhipster` + +- Generate a simple frontend project: + +`jhipster --skip-server` + +- Generate a simple backend project: + +`jhipster --skip-client` + +- Apply lastest JHipster updates to the project: + +`jhipster upgrade` + +- Add a new entity to a generated project: + +`jhipster entity {{entity_name}}` + +- Import a JDL file to configure your application (see: https://start.jhipster.tech/jdl-studio/): + +`jhipster import-jdl {{first_file.jh second_file.jh ... n_file.jh}}` + +- Generate a CI/CD pipeline for your application: + +`jhipster ci-cd` + +- Generate a Kubernetes configuration for your application: + +`jhipster kubernetes`