1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 19:55:28 +02:00
tldr/pages/common/jhipster.md
Managor 36735f324a
common*: refresh old pages part 8 (#16293)
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
2025-05-03 05:57:20 +03:00

36 lines
845 B
Markdown

# jhipster
> Web application generator using either monolithic or microservices architecture.
> More information: <https://www.jhipster.tech/creating-an-app/#command-line-options>.
- 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 latest 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 {{file1.jh file2.jh ...}}`
- Generate a CI/CD pipeline for your application:
`jhipster ci-cd`
- Generate a Kubernetes configuration for your application:
`jhipster kubernetes`