Skip to content

Commit 241b0bd

Browse files
project setup
1 parent 5fb4b97 commit 241b0bd

Some content is hidden

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

42 files changed

+729
-19
lines changed

.editorconfig

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 4
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false
15+
16+
[*.yml]
17+
charset = utf-8
18+
end_of_line = lf
19+
indent_size = 2
20+
indent_style = space
21+
insert_final_newline = false
22+
trim_trailing_whitespace = true
23+
24+
[LICENSE.code.txt]
25+
charset = utf-8
26+
end_of_line = lf
27+
indent_size = 3
28+
indent_style = space
29+
insert_final_newline = false
30+
trim_trailing_whitespace = true

.github/ISSUE_TEMPLATE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!--
2+
Thanks for raising a Twitterwall2 issue. What sort of issue are you raising?
3+
4+
Question
5+
6+
Please ask questions about how to use something, or to understand why something isn't
7+
working as you expect it to, on Stack Overflow using the spring-boot tag.
8+
9+
Bug report
10+
11+
Please provide details of the problem, including the version of Spring Boot that you
12+
are using. If possible, please provide a test case or sample application that reproduces
13+
the problem. This makes it much easier for us to diagnose the problem and to verify that
14+
we have fixed it.
15+
16+
Enhancement
17+
18+
Please start by describing the problem that you are trying to solve. There may already
19+
be a solution, or there may be a way to solve it that you hadn't considered.
20+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!--
2+
Thanks for contributing to Twitterwall. Please provide a brief description of your pull-request and reference any related issue numbers (prefix references with #).
3+
-->

.gitignore

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1-
# Compiled class file
2-
*.class
1+
target/
2+
!.mvn/wrapper/maven-wrapper.jar
33

4-
# Log file
5-
*.log
4+
### STS ###
5+
.apt_generated
6+
.classpath
7+
.factorypath
8+
.project
9+
.settings
10+
.springBeans
611

7-
# BlueJ files
8-
*.ctxt
12+
### IntelliJ IDEA ###
13+
.idea
14+
*.iws
15+
*.iml
16+
*.ipr
917

10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
12-
13-
# Package Files #
14-
*.jar
15-
*.war
16-
*.ear
17-
*.zip
18-
*.tar.gz
19-
*.rar
20-
21-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
22-
hs_err_pid*
18+
### NetBeans ###
19+
nbproject/private/
20+
build/
21+
nbbuild/
22+
dist/
23+
nbdist/
24+
.nb-gradle/

.mvn/wrapper/maven-wrapper.jar

46.5 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

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.3.9/apache-maven-3.3.9-bin.zip

LICENSE.code.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
All code in this repository is:
2+
=======================================================================
3+
Copyright (c) 2017 Thomas Woehlke All Rights Reserved
4+
5+
Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.

LICENSE.writing.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Except where otherwise noted, this work is licensed under http://creativecommons.org/licenses/by-nd/3.0/

SimpleWorklist.mdzip

243 KB
Binary file not shown.

_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
theme: jekyll-theme-slate
2+
title: Simpleworklist2
3+
description: Todo List for Getting Things Done
4+
google_analytics: UA-17174370-7

0 commit comments

Comments
 (0)