woyaowoyao / uaa02

uaa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UAA02

test jenkins on docker

This application was generated using 5.7.2,

Development

To start your application in the dev profile, simply run:

./mvnw

Building for production

To optimize the myUAA02 application for production, run:

./mvnw -Pprod clean package

To ensure everything worked, run:

java -jar target/*.war

Testing

To launch your application's tests, run:

./mvnw clean test

For more information, refer to the [Running tests page][].

Code quality

Sonar is used to analyse code quality. You can start a local Sonar server (accessible on http://localhost:9001) with:

docker-compose -f src/main/docker/sonar.yml up -d

Then, run a Sonar analysis:

./mvnw -Pprod clean test sonar:sonar

For more information, refer to the [Code quality page][].

Using Docker to simplify development (optional)

You can use Docker to improve your development experience. A number of docker-compose configuration are available in the src/main/docker folder to launch required third party services.

For example, to start a mysql database in a docker container, run:

docker-compose -f src/main/docker/mysql.yml up -d

To stop it and remove the container, run:

docker-compose -f src/main/docker/mysql.yml down

You can also fully dockerize your application and all the services that it depends on. To achieve this, first build a docker image of your app by running:

./mvnw package -Pprod verify jib:dockerBuild

Then run:

docker-compose -f src/main/docker/app.yml up -d

For more information refer to [Using Docker and Docker-Compose][], this page also contains information on the docker-compose sub-generator (jhipster docker-compose), which is able to generate docker configurations for one or several applications.

Continuous Integration (optional)

To configure CI for your project, run the ci-cd sub-generator (jhipster ci-cd), this will let you generate configuration files for a number of Continuous Integration systems. Consult the [Setting up Continuous Integration][] page for more information.

About

uaa


Languages

Language:Visual Basic 54.2%Language:Java 44.5%Language:HTML 1.1%Language:PLSQL 0.1%Language:Dockerfile 0.1%Language:Shell 0.1%