Skip to content

Commit ac3353f

Browse files
committed
Dotfiles and initial files for configuration
1 parent fce8985 commit ac3353f

File tree

7 files changed

+209
-8
lines changed

7 files changed

+209
-8
lines changed

.bowerrc

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

.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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# All text files should have the "lf" (Unix) line endings
2+
* text eol=lf
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.java text
7+
*.js text
8+
*.css text
9+
*.html text
10+
11+
# Denote all files that are truly binary and should not be modified.
12+
*.png binary
13+
*.jpg binary
14+
*.jar binary
15+
*.pdf binary
16+
*.eot binary
17+
*.ttf binary
18+
*.gzip binary
19+
*.gz binary

.gitignore

Lines changed: 118 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,124 @@
1-
*.class
1+
######################
2+
# Project Specific
3+
######################
4+
/src/main/webapp/dist
5+
6+
######################
7+
# Node
8+
######################
9+
/node/**
10+
/node_modules/**
11+
12+
######################
13+
# SASS
14+
######################
15+
.sass-cache/**
16+
17+
######################
18+
# Eclipse
19+
######################
20+
*.pydevproject
21+
.project
22+
.metadata
23+
/bin/**
24+
/tmp/**
25+
/tmp/**/*
26+
*.tmp
27+
*.bak
28+
*.swp
29+
*~.nib
30+
local.properties
31+
.classpath
32+
.settings/**
33+
.loadpath
34+
/src/main/resources/rebel.xml
35+
36+
# External tool builders
37+
.externalToolBuilders/**
38+
39+
# Locally stored "Eclipse launch configurations"
40+
*.launch
41+
42+
# CDT-specific
43+
.cproject
44+
45+
# PDT-specific
46+
.buildpath
47+
48+
######################
49+
# Intellij
50+
######################
51+
.idea/**
52+
*.iml
53+
*.iws
54+
*.ipr
55+
*.ids
56+
*.orig
57+
58+
######################
59+
# Maven
60+
######################
61+
/log/**
62+
/target/**
263

3-
# Mobile Tools for Java (J2ME)
4-
.mtj.tmp/
64+
######################
65+
# Gradle
66+
######################
67+
.gradle/**
568

6-
# Package Files #
69+
######################
70+
# Package Files
71+
######################
772
*.jar
873
*.war
974
*.ear
75+
*.db
76+
77+
######################
78+
# Windows
79+
######################
80+
# Windows image file caches
81+
Thumbs.db
82+
83+
# Folder config file
84+
Desktop.ini
85+
86+
######################
87+
# Mac OSX
88+
######################
89+
.DS_Store
90+
.svn
91+
92+
# Thumbnails
93+
._*
94+
95+
# Files that might appear on external disk
96+
.Spotlight-V100
97+
.Trashes
98+
99+
######################
100+
# Directories
101+
######################
102+
/build/**
103+
/bin/**
104+
/spring_loaded/**
105+
/deploy/**
106+
107+
######################
108+
# Logs
109+
######################
110+
*.log
111+
112+
######################
113+
# Others
114+
######################
115+
*.class
116+
*.*~
117+
*~
118+
.merge_file*
10119

11-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
12-
hs_err_pid*
120+
######################
121+
# Gradle Wrapper
122+
######################
123+
!gradle/wrapper/gradle-wrapper.jar
124+
/target/

.jshintrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"node": true,
3+
"esnext": true,
4+
"bitwise": true,
5+
"camelcase": true,
6+
"curly": true,
7+
"eqeqeq": true,
8+
"immed": true,
9+
"indent": 4,
10+
"latedef": true,
11+
"newcap": true,
12+
"noarg": true,
13+
"quotmark": "single",
14+
"regexp": true,
15+
"undef": true,
16+
"unused": true,
17+
"strict": true,
18+
"trailing": true,
19+
"smarttabs": true,
20+
"white": true,
21+
"predef": ["angular"]
22+
}

.yo-rc.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"generator-jhipster": {
3+
"baseName": "bookstore",
4+
"packageName": "com.bookstore",
5+
"packageFolder": "com/bookstore",
6+
"authenticationType": "oauth2",
7+
"hibernateCache": "ehcache",
8+
"clusteredHttpSession": "no",
9+
"websocket": "no",
10+
"databaseType": "sql",
11+
"devDatabaseType": "postgresql",
12+
"prodDatabaseType": "postgresql",
13+
"searchEngine": "no",
14+
"useCompass": false,
15+
"buildTool": "maven",
16+
"frontendBuilder": "grunt",
17+
"javaVersion": "7",
18+
"enableTranslation": true,
19+
"rememberMeKey": "30ab3c18d1fce4f5644b4579eabd65fd39edcef7"
20+
}
21+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# angularjs-springboot-bookstore
2-
Book store CMS done with Angularjs and Spring Boot
1+
README for bookstore
2+
==========================

0 commit comments

Comments
 (0)