Skip to content

Commit ab30a37

Browse files
committed
Initial commit.
0 parents  commit ab30a37

File tree

4 files changed

+168
-0
lines changed

4 files changed

+168
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
# Bug Description
11+
12+
13+
# Steps To Reproduce
14+
15+
16+
# Expected Behavior
17+
18+
19+
# Screenshots
20+
21+
22+
# Environment
23+
24+
25+
# Additional Context
26+
27+
28+
# Proposed Solution
29+
30+
31+
# Known Workarounds
32+
33+
34+
# Useful Links
35+
36+
37+
# Task Relationships
38+
39+
This bug:
40+
* Is caused by:
41+
* Relates to:
42+
* Depends on:

.github/ISSUE_TEMPLATE/task.md

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
name: Task
3+
about: Template for creating tasks
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
# Task Description
11+
12+
<!-- Provide an explanation of the issue -->
13+
14+
# Open Questions
15+
16+
<!-- Add any list of questions that still need to be clarified here -->
17+
18+
# Notes
19+
20+
<!-- Add any useful findings here -->
21+
22+
# Task List
23+
24+
<!-- The list below is just an example of a possible breakdown of the work: -->
25+
26+
The following tasks will need to be carried out:
27+
* [ ] Investigate the issue.
28+
* [ ] Provide a solution.
29+
* [ ] Test the fix.
30+
* [ ] Update the documentation.
31+
32+
# Useful Commands
33+
34+
35+
# Incurred Costs
36+
37+
38+
# Task Relationships
39+
40+
This task:
41+
* Is a sub-task of: #
42+
* Depends on: #
43+
* Is a follow-up of: #
44+
* Relates to: #
45+
46+
# Resources
47+
48+
<!-- Use this section to list out internal resources, such as, for example:
49+
* Git repositories
50+
* Wiki pages
51+
* Service IP-s/URL-s
52+
* Etc
53+
-->
54+
55+
# Useful Links
56+
57+
<!-- Use this section to collect links to articles, or documentation you found useful for the resolution of this issue -->
58+
* [link1]()
59+
* [link2]()
60+
* [link3]()
61+
62+
# Points of Contact
63+
64+
<!-- List people who might be able to help get a better understanding of the problem. For example:
65+
- The person who reported this issue, (if you are raising it on their behalf)
66+
- Any Subject Matter Experts (SME-s) that might help with providing ideas on how to implement this
67+
- Any chat channels where questions could be raised
68+
- If this is related to a third-party vendor issue, list e-mails, issue trackers, established, or dedicated contacts one could reach out to
69+
- Any other stakeholders
70+
- Any other interested parties
71+
-->

.github/PULL_REQUEST_TEMPLATE.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Pull Request Description
2+
3+
This pull request fixes # <!-- insert the issue number here -->
4+
5+
# Questions
6+
7+
* Does this pull request break backward compatibility?
8+
* Yes
9+
* No
10+
11+
* Does this pull request require other pull requests to be merged first?
12+
* Yes, please see # <!-- insert the issue number(s) here -->
13+
* No
14+
15+
* Does this require an update of the documentation?
16+
* Yes, please update the documentation [here](), [here]() and [here]().
17+
* No
18+
19+
# Code Review And Pre-Merge Checklist
20+
21+
* [ ] I have implemented an `Insecure` example.
22+
* [ ] I have implemented a `Secure` example.
23+
* [ ] My code follows the coding convention of this project.
24+
* [ ] I have performed a self-review of my own code.
25+
* [ ] I have commented my code in hard-to-understand areas.
26+
* [ ] My changes generate no new warnings.

.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
### IntelliJ IDEA ###
2+
out/
3+
!**/src/main/**/out/
4+
!**/src/test/**/out/
5+
6+
### Eclipse ###
7+
.apt_generated
8+
.classpath
9+
.factorypath
10+
.project
11+
.settings
12+
.springBeans
13+
.sts4-cache
14+
bin/
15+
!**/src/main/**/bin/
16+
!**/src/test/**/bin/
17+
18+
### NetBeans ###
19+
/nbproject/private/
20+
/nbbuild/
21+
/dist/
22+
/nbdist/
23+
/.nb-gradle/
24+
25+
### VS Code ###
26+
.vscode/
27+
28+
### Mac OS ###
29+
.DS_Store

0 commit comments

Comments
 (0)