Skip to content

Commit c31cdc3

Browse files
committed
Initial application generated by JHipster-4.10.0
0 parents  commit c31cdc3

File tree

1,296 files changed

+238375
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,296 files changed

+238375
-0
lines changed

.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "src/main/webapp/bower_components"
3+
}

.editorconfig

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
9+
# Change these settings to your own preference
10+
indent_style = space
11+
indent_size = 4
12+
13+
# We recommend you to keep these unchanged
14+
end_of_line = lf
15+
charset = utf-8
16+
trim_trailing_whitespace = true
17+
insert_final_newline = true
18+
19+
[*.md]
20+
trim_trailing_whitespace = false
21+
22+
[{package,bower}.json]
23+
indent_style = space
24+
indent_size = 2

.eslintignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# more info here - http://eslint.org/docs/user-guide/configuring.html#ignoring-files-and-directories
2+
3+
# node_modules ignored by default
4+
5+
# ignore bower_components
6+
src/main/webapp/bower_components

.eslintrc.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// See: http://eslint.org/
2+
// See: https://www.npmjs.com/package/eslint-plugin-angular
3+
{
4+
"extends": [
5+
"eslint:recommended",
6+
"angular"
7+
],
8+
"env": {
9+
"node": true,
10+
"browser": true
11+
},
12+
// severity for a rule should be one of the following: 0 = off, 1 = warning, 2 = error
13+
"rules": {
14+
// coding style
15+
"wrap-iife": [2, "inside"],
16+
"eqeqeq": 2,
17+
"no-use-before-define": [2, "nofunc"],
18+
"no-unused-vars": [2, {"vars": "local", "args": "none"}],
19+
"no-multi-str": 2,
20+
"no-irregular-whitespace": 2,
21+
"semi": [2, "always"],
22+
"indent": 2,
23+
24+
// os/git options
25+
// we want to run on all OSes
26+
"linebreak-style": 0,
27+
"eol-last": 2
28+
}
29+
}

.gitattributes

+149
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
# This file is inspired by https://github.com/alexkaratarakis/gitattributes
2+
#
3+
# Auto detect text files and perform LF normalization
4+
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
5+
* text=auto
6+
7+
# The above will handle all files NOT found below
8+
# These files are text and should be normalized (Convert crlf => lf)
9+
10+
*.bat text eol=crlf
11+
*.coffee text
12+
*.css text
13+
*.cql text
14+
*.df text
15+
*.ejs text
16+
*.html text
17+
*.java text
18+
*.js text
19+
*.json text
20+
*.less text
21+
*.properties text
22+
*.sass text
23+
*.scss text
24+
*.sh text eol=lf
25+
*.sql text
26+
*.txt text
27+
*.ts text
28+
*.xml text
29+
*.yaml text
30+
*.yml text
31+
32+
# Documents
33+
*.doc diff=astextplain
34+
*.DOC diff=astextplain
35+
*.docx diff=astextplain
36+
*.DOCX diff=astextplain
37+
*.dot diff=astextplain
38+
*.DOT diff=astextplain
39+
*.pdf diff=astextplain
40+
*.PDF diff=astextplain
41+
*.rtf diff=astextplain
42+
*.RTF diff=astextplain
43+
*.markdown text
44+
*.md text
45+
*.adoc text
46+
*.textile text
47+
*.mustache text
48+
*.csv text
49+
*.tab text
50+
*.tsv text
51+
*.txt text
52+
AUTHORS text
53+
CHANGELOG text
54+
CHANGES text
55+
CONTRIBUTING text
56+
COPYING text
57+
copyright text
58+
*COPYRIGHT* text
59+
INSTALL text
60+
license text
61+
LICENSE text
62+
NEWS text
63+
readme text
64+
*README* text
65+
TODO text
66+
67+
# Graphics
68+
*.png binary
69+
*.jpg binary
70+
*.jpeg binary
71+
*.gif binary
72+
*.tif binary
73+
*.tiff binary
74+
*.ico binary
75+
# SVG treated as an asset (binary) by default. If you want to treat it as text,
76+
# comment-out the following line and uncomment the line after.
77+
*.svg binary
78+
#*.svg text
79+
*.eps binary
80+
81+
# These files are binary and should be left untouched
82+
# (binary is a macro for -text -diff)
83+
*.class binary
84+
*.jar binary
85+
*.war binary
86+
87+
## LINTERS
88+
.csslintrc text
89+
.eslintrc text
90+
.jscsrc text
91+
.jshintrc text
92+
.jshintignore text
93+
.stylelintrc text
94+
95+
## CONFIGS
96+
*.bowerrc text
97+
*.conf text
98+
*.config text
99+
.editorconfig text
100+
.gitattributes text
101+
.gitconfig text
102+
.gitignore text
103+
.htaccess text
104+
*.npmignore text
105+
106+
## HEROKU
107+
Procfile text
108+
.slugignore text
109+
110+
## AUDIO
111+
*.kar binary
112+
*.m4a binary
113+
*.mid binary
114+
*.midi binary
115+
*.mp3 binary
116+
*.ogg binary
117+
*.ra binary
118+
119+
## VIDEO
120+
*.3gpp binary
121+
*.3gp binary
122+
*.as binary
123+
*.asf binary
124+
*.asx binary
125+
*.fla binary
126+
*.flv binary
127+
*.m4v binary
128+
*.mng binary
129+
*.mov binary
130+
*.mp4 binary
131+
*.mpeg binary
132+
*.mpg binary
133+
*.swc binary
134+
*.swf binary
135+
*.webm binary
136+
137+
## ARCHIVES
138+
*.7z binary
139+
*.gz binary
140+
*.rar binary
141+
*.tar binary
142+
*.zip binary
143+
144+
## FONTS
145+
*.ttf binary
146+
*.eot binary
147+
*.otf binary
148+
*.woff binary
149+
*.woff2 binary

.gitignore

+141
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
######################
2+
# Project Specific
3+
######################
4+
/target/www/**
5+
/src/test/javascript/coverage/
6+
7+
######################
8+
# Node
9+
######################
10+
/node/
11+
node_tmp/
12+
node_modules/
13+
npm-debug.log.*
14+
15+
######################
16+
# SASS
17+
######################
18+
.sass-cache/
19+
20+
######################
21+
# Eclipse
22+
######################
23+
*.pydevproject
24+
.project
25+
.metadata
26+
tmp/
27+
tmp/**/*
28+
*.tmp
29+
*.bak
30+
*.swp
31+
*~.nib
32+
local.properties
33+
.classpath
34+
.settings/
35+
.loadpath
36+
.factorypath
37+
/src/main/resources/rebel.xml
38+
39+
# External tool builders
40+
.externalToolBuilders/**
41+
42+
# Locally stored "Eclipse launch configurations"
43+
*.launch
44+
45+
# CDT-specific
46+
.cproject
47+
48+
# PDT-specific
49+
.buildpath
50+
51+
######################
52+
# Intellij
53+
######################
54+
.idea/
55+
*.iml
56+
*.iws
57+
*.ipr
58+
*.ids
59+
*.orig
60+
classes/
61+
62+
######################
63+
# Visual Studio Code
64+
######################
65+
.vscode/
66+
67+
######################
68+
# Maven
69+
######################
70+
/log/
71+
/target/
72+
73+
######################
74+
# Gradle
75+
######################
76+
.gradle/
77+
/build/
78+
79+
######################
80+
# Package Files
81+
######################
82+
*.jar
83+
*.war
84+
*.ear
85+
*.db
86+
87+
######################
88+
# Windows
89+
######################
90+
# Windows image file caches
91+
Thumbs.db
92+
93+
# Folder config file
94+
Desktop.ini
95+
96+
######################
97+
# Mac OSX
98+
######################
99+
.DS_Store
100+
.svn
101+
102+
# Thumbnails
103+
._*
104+
105+
# Files that might appear on external disk
106+
.Spotlight-V100
107+
.Trashes
108+
109+
######################
110+
# Directories
111+
######################
112+
/bin/
113+
/deploy/
114+
115+
######################
116+
# Logs
117+
######################
118+
*.log
119+
120+
######################
121+
# Others
122+
######################
123+
*.class
124+
*.*~
125+
*~
126+
.merge_file*
127+
128+
######################
129+
# Gradle Wrapper
130+
######################
131+
!gradle/wrapper/gradle-wrapper.jar
132+
133+
######################
134+
# Maven Wrapper
135+
######################
136+
!.mvn/wrapper/maven-wrapper.jar
137+
138+
######################
139+
# ESLint
140+
######################
141+
.eslintcache

.mvn/wrapper/maven-wrapper.jar

48.3 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip

.yo-rc.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"generator-jhipster": {
3+
"promptValues": {
4+
"packageName": "org.apeps.firstapp"
5+
},
6+
"jhipsterVersion": "4.10.0",
7+
"baseName": "first",
8+
"packageName": "org.apeps.firstapp",
9+
"packageFolder": "org/apeps/firstapp",
10+
"serverPort": "8080",
11+
"authenticationType": "session",
12+
"hibernateCache": "ehcache",
13+
"clusteredHttpSession": false,
14+
"websocket": false,
15+
"databaseType": "sql",
16+
"devDatabaseType": "h2Disk",
17+
"prodDatabaseType": "postgresql",
18+
"searchEngine": false,
19+
"messageBroker": false,
20+
"serviceDiscoveryType": false,
21+
"buildTool": "maven",
22+
"enableSocialSignIn": false,
23+
"enableSwaggerCodegen": false,
24+
"rememberMeKey": "4aee565e6d7abdb6c5596cbb96731ef2c38009f5",
25+
"clientFramework": "angular1",
26+
"useSass": false,
27+
"clientPackageManager": "yarn",
28+
"applicationType": "monolith",
29+
"testFrameworks": [],
30+
"jhiPrefix": "jhi",
31+
"enableTranslation": false
32+
}
33+
}

0 commit comments

Comments
 (0)