DevAlves1993 / jhipster-lite

JHipster Lite ⚡ is a development platform to generate, develop & deploy modern web applications & microservice architectures, step by step.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo

JHipster Lite

Build Status Coverage Status

Description

JHipster is a development platform to quickly generate, develop & deploy modern web applications & microservice architectures.

JHipster Lite will help you to start your project, by generating step by step what you need.

Prerequisites

Java

You need to have Java 17 :

Node.js and NPM

This part is needed if you want to contribute to the project.

  • Node.js: we use Node to run a prettier as code formatter. Depending on your system, you can install Node either from source or as a pre-packaged bundle.

After installing Node, you should be able to run the following command to install development tools. You will only need to run this command when dependencies change in package.json.

npm ci

Test the project

To launch tests:

./mvnw clean test

To launch tests and integration tests:

./mvnw clean verify

Run the project

You can run the project using Maven:

./mvnw spring-boot:run

Or, first, you can package as jar:

./mvnw package

Then, run:

java -jar target/*.jar

Then navigate to http://localhost:7471/swagger-ui.html in your browser.

Generate your project

You can use this JSON to generate a project:

{
  "folder": "/tmp/beer",
  "generator-jhipster": {
    "projectName": "Beer Project",
    "baseName": "beer",
    "prettierDefaultIndent": 2,
    "packageName": "tech.jhipster.beer"
  }
}

You can use different API to:

  • init the project
  • add Maven Java as Build Tool
  • add Java Base classes and Domain Error
  • add Spring Boot as Server Framework
    • add Spring Boot MVC
      • add Tomcat or Undertow
      • add Spring Security with JWT
    • add Database
      • add PostgreSQL
      • add Liquibase as Database Migration Tool

About

JHipster Lite ⚡ is a development platform to generate, develop & deploy modern web applications & microservice architectures, step by step.

License:Apache License 2.0


Languages

Language:Java 71.5%Language:Mustache 27.8%Language:Python 0.5%Language:Shell 0.2%Language:JavaScript 0.0%