Skip to content
This repository was archived by the owner on Jun 2, 2018. It is now read-only.

Commit 78ee581

Browse files
author
Systemaker
committed
Initial application generated by JHipster-4.11.0
0 parents  commit 78ee581

File tree

576 files changed

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

576 files changed

+29307
-0
lines changed

.angular-cli.json

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"name": "quickandclean"
5+
},
6+
"apps": [{
7+
"root": "src/main/webapp",
8+
"outDir": "target/www/app",
9+
"assets": [
10+
"content",
11+
"i18n",
12+
"favicon.ico"
13+
],
14+
"index": "index.html",
15+
"main": "app/app.main.ts",
16+
"polyfills": "app/polyfills.ts",
17+
"test": "src/test/javascript/spec/entry.ts",
18+
"tsconfig": "../../../tsconfig.json",
19+
"prefix": "jhi",
20+
"mobile": false,
21+
"styles": [
22+
"content/scss/vendor.scss",
23+
"content/scss/global.scss"
24+
],
25+
"scripts": []
26+
}],
27+
"e2e": {
28+
"protractor": {
29+
"config": "src/test/javascript/protractor.conf.js"
30+
}
31+
},
32+
"lint": [{
33+
"project": "../../../tsconfig.json"
34+
},
35+
{
36+
"project": "../../../tsconfig-aot.json"
37+
}
38+
],
39+
"test": {
40+
"karma": {
41+
"config": "src/test/javascript/karma.conf.js"
42+
}
43+
},
44+
"defaults": {
45+
"styleExt": "scss",
46+
"prefixInterfaces": false,
47+
"component" : {
48+
"inlineStyle" : true,
49+
"inlineTemplate": false,
50+
"spec": false
51+
},
52+
"directive" : {
53+
"spec": false
54+
},
55+
"guard" : {
56+
"spec": false
57+
},
58+
"pipe" : {
59+
"spec": false
60+
},
61+
"service" : {
62+
"spec": false
63+
}
64+
},
65+
"packageManager": "yarn"
66+
}

.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

.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

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
######################
2+
# Project Specific
3+
######################
4+
/src/main/webapp/content/css/main.css
5+
/target/www/**
6+
/src/test/javascript/coverage/
7+
/src/test/javascript/PhantomJS*/
8+
9+
######################
10+
# Node
11+
######################
12+
/node/
13+
node_tmp/
14+
node_modules/
15+
npm-debug.log.*
16+
/.awcache/*
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+
65+
######################
66+
# Visual Studio Code
67+
######################
68+
.vscode/
69+
70+
######################
71+
# Maven
72+
######################
73+
/log/
74+
/target/
75+
76+
######################
77+
# Gradle
78+
######################
79+
.gradle/
80+
/build/
81+
82+
######################
83+
# Package Files
84+
######################
85+
*.jar
86+
*.war
87+
*.ear
88+
*.db
89+
90+
######################
91+
# Windows
92+
######################
93+
# Windows image file caches
94+
Thumbs.db
95+
96+
# Folder config file
97+
Desktop.ini
98+
99+
######################
100+
# Mac OSX
101+
######################
102+
.DS_Store
103+
.svn
104+
105+
# Thumbnails
106+
._*
107+
108+
# Files that might appear on external disk
109+
.Spotlight-V100
110+
.Trashes
111+
112+
######################
113+
# Directories
114+
######################
115+
/bin/
116+
/deploy/
117+
118+
######################
119+
# Logs
120+
######################
121+
*.log*
122+
123+
######################
124+
# Others
125+
######################
126+
*.class
127+
*.*~
128+
*~
129+
.merge_file*
130+
131+
######################
132+
# Gradle Wrapper
133+
######################
134+
!gradle/wrapper/gradle-wrapper.jar
135+
136+
######################
137+
# Maven Wrapper
138+
######################
139+
!.mvn/wrapper/maven-wrapper.jar
140+
141+
######################
142+
# ESLint
143+
######################
144+
.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

0 commit comments

Comments
 (0)