Skip to content

Commit f82666f

Browse files
committed
Initial application generated by JHipster-5.2.1
0 parents  commit f82666f

File tree

353 files changed

+31031
-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.

353 files changed

+31031
-0
lines changed

.editorconfig

Lines changed: 24 additions & 0 deletions
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

.gitattributes

Lines changed: 149 additions & 0 deletions
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

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

.mvn/wrapper/maven-wrapper.jar

48.3 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
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.3/apache-maven-3.5.3-bin.zip

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
target

.prettierrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Prettier configuration
2+
3+
printWidth: 140
4+
singleQuote: true
5+
tabWidth: 4
6+
useTabs: false
7+
8+
# js and ts rules:
9+
arrowParens: avoid
10+
11+
# jsx and tsx rules:
12+
jsxBracketSameLine: false

.yo-rc.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"generator-jhipster": {
3+
"promptValues": {
4+
"packageName": "fr.fstepho.dashboard"
5+
},
6+
"jhipsterVersion": "5.2.1",
7+
"applicationType": "monolith",
8+
"baseName": "dashboard",
9+
"packageName": "fr.fstepho.dashboard",
10+
"packageFolder": "fr/fstepho/dashboard",
11+
"serverPort": "8080",
12+
"authenticationType": "jwt",
13+
"cacheProvider": "ehcache",
14+
"enableHibernateCache": true,
15+
"websocket": "spring-websocket",
16+
"databaseType": "sql",
17+
"devDatabaseType": "postgresql",
18+
"prodDatabaseType": "postgresql",
19+
"searchEngine": "elasticsearch",
20+
"messageBroker": false,
21+
"serviceDiscoveryType": false,
22+
"buildTool": "maven",
23+
"enableSwaggerCodegen": true,
24+
"jwtSecretKey": "2e501724544b5bd882c3d71311df224a33366488",
25+
"clientFramework": "angularX",
26+
"useSass": true,
27+
"clientPackageManager": "yarn",
28+
"testFrameworks": [
29+
"cucumber"
30+
],
31+
"jhiPrefix": "jhi",
32+
"enableTranslation": false
33+
}
34+
}

0 commit comments

Comments
 (0)