Go to file
2019-04-28 11:14:44 +02:00
.jhipster Preliminary completed customer model. 2019-04-24 14:36:11 +02:00
gradle fine-tuning pitest config and increasing threshold 2019-04-28 08:11:41 +02:00
sql Historicization with PostgreSQL improved. 2019-04-26 10:04:06 +02:00
src fine-tuning pitest config and increasing threshold 2019-04-28 11:14:44 +02:00
vue Make API port configurable and add documentation 2019-04-03 18:28:50 +02:00
webpack Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
.editorconfig Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
.gitattributes Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
.gitignore Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
.huskyrc Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
.prettierignore Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
.prettierrc Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
.yo-rc.json Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
angular.json Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
build.gradle fine-tuning pitest config and increasing threshold 2019-04-28 08:11:41 +02:00
gradle.properties Try tricking Jenkins into using 2019-04-01 17:24:44 +02:00
gradlew Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
gradlew.bat Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
Jenkinsfile adds jacoco check to Jenkinsfile 2019-04-09 15:18:11 +02:00
JHIPSTER.md initial README for developers 2019-04-02 10:23:40 +02:00
package-lock.json JSonDeserializerWithAccessFilter 2019-04-23 06:17:55 +02:00
package.json Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
postcss.config.js Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
proxy.conf.json Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
README.md Documentation of Git workflow 2019-04-26 11:55:42 +02:00
settings.gradle Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
tsconfig-aot.json Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
tsconfig.json Initial application generated by JHipster-5.8.2 2019-04-01 13:14:56 +02:00
tslint.json ts-lint: do not warn if properties or parameters define inferrable type 2019-04-09 13:19:57 +02:00

= hsadminNg Development

== Setting up the Development Environment

You'll often need to execute ./gradlew, therefore we suggest to define this alias:

alias gw='./gradlew'

== Building the Application with Test Execution

gw build

== Starting the Application

Either simply:

gw bootRun

or with a specific port:

SERVER_PORT=8081 ./gradlew bootRun

== Running JUnit tests with branch coverage

=== for IntelliJ IDEA

see: https://confluence.jetbrains.com/display/IDEADEV/IDEA+Coverage+Runner

Either apply it to specific test configurations or, better, delete the previous test configurations and amend the JUnit template.

== Git Workflow

The jhipster-generated git branch tracks the history of the JDL model file and the generated source code. The project has to be resetted to a clean state (without any generated entitites) before changes to the JDL file can be imported.

# Prepare/Cleanup Workspace

git checkout jhipster-generated
git reset --hard jdl-base
git clean -f -d
git checkout HEAD@{1} src/main/jdl/customer.jdl
git reset HEAD .

# Apply changes to the jdl file

# Invoke JHipster generator

jhipster import-jdl src/main/jdl/customer.jdl --force

# Let Git determine change set between most recent commit and the re-generated source

git reset --soft HEAD@{1}
git reset HEAD .
git add .

# Commit changeset

git commit -m '...'

# Merge changeset into master branch

git checkout master
git merge jhipster-generated