-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial application generated by JHipster-4.10.0
- Loading branch information
0 parents
commit c31cdc3
Showing
1,296 changed files
with
238,375 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "src/main/webapp/bower_components" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# more info here - http://eslint.org/docs/user-guide/configuring.html#ignoring-files-and-directories | ||
|
||
# node_modules ignored by default | ||
|
||
# ignore bower_components | ||
src/main/webapp/bower_components |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// See: http://eslint.org/ | ||
// See: https://www.npmjs.com/package/eslint-plugin-angular | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"angular" | ||
], | ||
"env": { | ||
"node": true, | ||
"browser": true | ||
}, | ||
// severity for a rule should be one of the following: 0 = off, 1 = warning, 2 = error | ||
"rules": { | ||
// coding style | ||
"wrap-iife": [2, "inside"], | ||
"eqeqeq": 2, | ||
"no-use-before-define": [2, "nofunc"], | ||
"no-unused-vars": [2, {"vars": "local", "args": "none"}], | ||
"no-multi-str": 2, | ||
"no-irregular-whitespace": 2, | ||
"semi": [2, "always"], | ||
"indent": 2, | ||
|
||
// os/git options | ||
// we want to run on all OSes | ||
"linebreak-style": 0, | ||
"eol-last": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
# This file is inspired by https://github.com/alexkaratarakis/gitattributes | ||
# | ||
# Auto detect text files and perform LF normalization | ||
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/ | ||
* text=auto | ||
|
||
# The above will handle all files NOT found below | ||
# These files are text and should be normalized (Convert crlf => lf) | ||
|
||
*.bat text eol=crlf | ||
*.coffee text | ||
*.css text | ||
*.cql text | ||
*.df text | ||
*.ejs text | ||
*.html text | ||
*.java text | ||
*.js text | ||
*.json text | ||
*.less text | ||
*.properties text | ||
*.sass text | ||
*.scss text | ||
*.sh text eol=lf | ||
*.sql text | ||
*.txt text | ||
*.ts text | ||
*.xml text | ||
*.yaml text | ||
*.yml text | ||
|
||
# Documents | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain | ||
*.markdown text | ||
*.md text | ||
*.adoc text | ||
*.textile text | ||
*.mustache text | ||
*.csv text | ||
*.tab text | ||
*.tsv text | ||
*.txt text | ||
AUTHORS text | ||
CHANGELOG text | ||
CHANGES text | ||
CONTRIBUTING text | ||
COPYING text | ||
copyright text | ||
*COPYRIGHT* text | ||
INSTALL text | ||
license text | ||
LICENSE text | ||
NEWS text | ||
readme text | ||
*README* text | ||
TODO text | ||
|
||
# Graphics | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.tif binary | ||
*.tiff binary | ||
*.ico binary | ||
# SVG treated as an asset (binary) by default. If you want to treat it as text, | ||
# comment-out the following line and uncomment the line after. | ||
*.svg binary | ||
#*.svg text | ||
*.eps binary | ||
|
||
# These files are binary and should be left untouched | ||
# (binary is a macro for -text -diff) | ||
*.class binary | ||
*.jar binary | ||
*.war binary | ||
|
||
## LINTERS | ||
.csslintrc text | ||
.eslintrc text | ||
.jscsrc text | ||
.jshintrc text | ||
.jshintignore text | ||
.stylelintrc text | ||
|
||
## CONFIGS | ||
*.bowerrc text | ||
*.conf text | ||
*.config text | ||
.editorconfig text | ||
.gitattributes text | ||
.gitconfig text | ||
.gitignore text | ||
.htaccess text | ||
*.npmignore text | ||
|
||
## HEROKU | ||
Procfile text | ||
.slugignore text | ||
|
||
## AUDIO | ||
*.kar binary | ||
*.m4a binary | ||
*.mid binary | ||
*.midi binary | ||
*.mp3 binary | ||
*.ogg binary | ||
*.ra binary | ||
|
||
## VIDEO | ||
*.3gpp binary | ||
*.3gp binary | ||
*.as binary | ||
*.asf binary | ||
*.asx binary | ||
*.fla binary | ||
*.flv binary | ||
*.m4v binary | ||
*.mng binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mpeg binary | ||
*.mpg binary | ||
*.swc binary | ||
*.swf binary | ||
*.webm binary | ||
|
||
## ARCHIVES | ||
*.7z binary | ||
*.gz binary | ||
*.rar binary | ||
*.tar binary | ||
*.zip binary | ||
|
||
## FONTS | ||
*.ttf binary | ||
*.eot binary | ||
*.otf binary | ||
*.woff binary | ||
*.woff2 binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
###################### | ||
# Project Specific | ||
###################### | ||
/target/www/** | ||
/src/test/javascript/coverage/ | ||
|
||
###################### | ||
# Node | ||
###################### | ||
/node/ | ||
node_tmp/ | ||
node_modules/ | ||
npm-debug.log.* | ||
|
||
###################### | ||
# SASS | ||
###################### | ||
.sass-cache/ | ||
|
||
###################### | ||
# Eclipse | ||
###################### | ||
*.pydevproject | ||
.project | ||
.metadata | ||
tmp/ | ||
tmp/**/* | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.classpath | ||
.settings/ | ||
.loadpath | ||
.factorypath | ||
/src/main/resources/rebel.xml | ||
|
||
# External tool builders | ||
.externalToolBuilders/** | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# CDT-specific | ||
.cproject | ||
|
||
# PDT-specific | ||
.buildpath | ||
|
||
###################### | ||
# Intellij | ||
###################### | ||
.idea/ | ||
*.iml | ||
*.iws | ||
*.ipr | ||
*.ids | ||
*.orig | ||
classes/ | ||
|
||
###################### | ||
# Visual Studio Code | ||
###################### | ||
.vscode/ | ||
|
||
###################### | ||
# Maven | ||
###################### | ||
/log/ | ||
/target/ | ||
|
||
###################### | ||
# Gradle | ||
###################### | ||
.gradle/ | ||
/build/ | ||
|
||
###################### | ||
# 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 | ||
###################### | ||
/bin/ | ||
/deploy/ | ||
|
||
###################### | ||
# Logs | ||
###################### | ||
*.log | ||
|
||
###################### | ||
# Others | ||
###################### | ||
*.class | ||
*.*~ | ||
*~ | ||
.merge_file* | ||
|
||
###################### | ||
# Gradle Wrapper | ||
###################### | ||
!gradle/wrapper/gradle-wrapper.jar | ||
|
||
###################### | ||
# Maven Wrapper | ||
###################### | ||
!.mvn/wrapper/maven-wrapper.jar | ||
|
||
###################### | ||
# ESLint | ||
###################### | ||
.eslintcache |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"generator-jhipster": { | ||
"promptValues": { | ||
"packageName": "org.apeps.firstapp" | ||
}, | ||
"jhipsterVersion": "4.10.0", | ||
"baseName": "first", | ||
"packageName": "org.apeps.firstapp", | ||
"packageFolder": "org/apeps/firstapp", | ||
"serverPort": "8080", | ||
"authenticationType": "session", | ||
"hibernateCache": "ehcache", | ||
"clusteredHttpSession": false, | ||
"websocket": false, | ||
"databaseType": "sql", | ||
"devDatabaseType": "h2Disk", | ||
"prodDatabaseType": "postgresql", | ||
"searchEngine": false, | ||
"messageBroker": false, | ||
"serviceDiscoveryType": false, | ||
"buildTool": "maven", | ||
"enableSocialSignIn": false, | ||
"enableSwaggerCodegen": false, | ||
"rememberMeKey": "4aee565e6d7abdb6c5596cbb96731ef2c38009f5", | ||
"clientFramework": "angular1", | ||
"useSass": false, | ||
"clientPackageManager": "yarn", | ||
"applicationType": "monolith", | ||
"testFrameworks": [], | ||
"jhiPrefix": "jhi", | ||
"enableTranslation": false | ||
} | ||
} |
Oops, something went wrong.