Skip to content

Commit

Permalink
Migrate to JHipster stack
Browse files Browse the repository at this point in the history
 - entities updated
 - CRUD UI OK for the entities
 - Excel ETL class have been removed, the class will be externalized in a separate module
  • Loading branch information
acheype committed Nov 4, 2015
1 parent eeb6268 commit 5f5cf41
Show file tree
Hide file tree
Showing 1,364 changed files with 406,656 additions and 6,662 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "src/main/webapp/bower_components"
}
24 changes: 24 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]

# Change these settings to your own preference
indent_style = space
indent_size = 4

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[{package,bower}.json]
indent_style = space
indent_size = 2
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# All text files should have the "lf" (Unix) line endings
* text eol=lf

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.java text
*.js text
*.css text
*.html text

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.jar binary
*.pdf binary
*.eot binary
*.ttf binary
*.gzip binary
*.gz binary
*.ai binary
*.eps binary
*.swf binary
135 changes: 115 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,124 @@
# Generic files
*~
*.lock
*.DS_Store
*.swp
*.out
######################
# Project Specific
######################
/src/main/webapp/assets/styles/main.css
/src/main/webapp/dist

######################
# Node
######################
/node/**
/node_modules/**

######################
# SASS
######################
.sass-cache/**

######################
# Eclipse
.classpath
######################
*.pydevproject
.project
.settings/
.metadata
/bin/**
/tmp/**
/tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/**
.loadpath
/src/main/resources/rebel.xml

# External tool builders
.externalToolBuilders/**

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

######################
# Intellij
.idea/
######################
.idea/**
*.iml
*.iws
*.ipr
*.ids
*.orig

# Netbeans
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml

######################
# Maven
log/
target/
######################
/log/**
/target/**

######################
# Gradle
######################
.gradle/**

######################
# Package Files
######################
*.jar
*.war
*.ear
*.db

######################
# Windows
######################
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini

######################
# Mac OSX
######################
.DS_Store
.svn

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

######################
# Directories
######################
/build/**
/bin/**
/spring_loaded/**
/deploy/**

######################
# Logs
######################
*.log

######################
# Others
######################
*.class
*.*~
*~
.merge_file*

######################
# Gradle Wrapper
######################
!gradle/wrapper/gradle-wrapper.jar
35 changes: 35 additions & 0 deletions .jhipster/Author.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"relationships": [
{
"relationshipId": 1,
"relationshipName": "publication",
"otherEntityName": "Publication",
"relationshipType": "many-to-one",
"otherEntityField": "title"
}
],
"fields": [
{
"fieldId": 1,
"fieldName": "family",
"fieldType": "String",
"fieldValidateRules": [
"required",
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
},
{
"fieldId": 2,
"fieldName": "given",
"fieldType": "String",
"fieldValidateRules": [
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
}
],
"changelogDate": "20151005000001",
"dto": "no",
"pagination": "pagination"
}
59 changes: 59 additions & 0 deletions .jhipster/Compiler.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"relationships": [
{
}
],
"fields": [
{
"fieldId": 1,
"fieldName": "family",
"fieldType": "String",
"fieldValidateRules": [
"required",
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
},
{
"fieldId": 2,
"fieldName": "given",
"fieldType": "String",
"fieldValidateRules": [
"required",
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
},
{
"fieldId": 3,
"fieldName": "institution",
"fieldType": "String",
"fieldValidateRules": [
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
},
{
"fieldId": 4,
"fieldName": "institutionAddress",
"fieldType": "String",
"fieldValidateRules": [
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
},
{
"fieldId": 5,
"fieldName": "email",
"fieldType": "String",
"fieldValidateRules": [
"required",
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
}
],
"changelogDate": "20151005000002",
"dto": "no",
"pagination": "pagination"
}
66 changes: 66 additions & 0 deletions .jhipster/Ethnology.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"relationships": [
{
"relationshipId": 1,
"relationshipName": "publication",
"otherEntityName": "Publication",
"relationshipType": "many-to-one",
"otherEntityField": "title"
},
{
"relationshipId": 2,
"relationshipName": "plantIngredient",
"otherEntityName": "PlantIngredient",
"relationshipType": "many-to-many",
"otherEntityRelationshipName": "ethnology",
"otherEntityField": "id",
"ownerSide": true
}
],
"fields": [
{
"fieldId": 1,
"fieldName": "ethnoRelevancy",
"fieldType": "String",
"fieldValidateRules": [
"required"
]
},
{
"fieldId": 2,
"fieldName": "treatmentType",
"fieldType": "String",
"fieldValidateRules": [
"required",
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
},
{
"fieldId": 3,
"fieldName": "traditionalRecipeDetails",
"fieldType": "String"
},
{
"fieldId": 4,
"fieldName": "preparationMode",
"fieldType": "String",
"fieldValidateRules": [
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
},
{
"fieldId": 5,
"fieldName": "administrationRoute",
"fieldType": "String",
"fieldValidateRules": [
"maxlength"
],
"fieldValidateRulesMaxlength": "255"
}
],
"changelogDate": "20151005000006",
"dto": "no",
"pagination": "pagination"
}
Loading

0 comments on commit 5f5cf41

Please sign in to comment.