Skip to content

Commit c1d8a29

Browse files
Piotr Rogackipiotr-rogacki-wttech
Piotr Rogacki
authored andcommitted
Stubway 1.0.0
0 parents  commit c1d8a29

File tree

79 files changed

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

79 files changed

+3318
-0
lines changed

.github/ISSUE_TEMPLATE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## Expected Behavior
2+
3+
4+
## Actual Behavior
5+
6+
7+
## Steps to Reproduce the Problem
8+
9+
1.
10+
1.
11+
1.
12+
13+
## Specifications
14+
15+
- Tool Version:
16+
- AEM version:
17+
18+
## Additional description
19+
Optional field.
20+
21+
Everything what can help to reproduce an issue or any additional motivation why you think such feature would be useful.

.github/PULL_REQUEST_TEMPLATE.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# One-line summary
2+
3+
> Issue : #1234 (only if appropriate)
4+
5+
## Description
6+
A few sentences describing the overall goals of the pull request's
7+
commits.
8+
9+
## Types of Changes
10+
_What types of changes does your code introduce? Keep the ones that apply:_
11+
12+
- New feature (non-breaking change which adds functionality)
13+
- Bug fix (non-breaking change which fixes an issue)
14+
- Configuration change
15+
- Refactor/improvements
16+
- Documentation / non-code
17+
18+
## Tasks
19+
_List of tasks need do to complete the PR_
20+
- [ ] Created Task 1
21+
- [ ] Created Task 2
22+
- [ ] To-do Task 3
23+
24+
## Review
25+
_List of tasks the reviewer must do to review the PR_
26+
- [ ] Tests
27+
- [ ] Documentation
28+
- [ ] CHANGELOG
29+
30+
## Deployment Notes
31+
These should highlight any feature toggles, additional steps etc.

.gitignore

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
# Created by https://www.gitignore.io/api/eclipse,java,maven
2+
3+
### Eclipse ###
4+
*.pydevproject
5+
.metadata
6+
bin/
7+
tmp/
8+
*.tmp
9+
*.bak
10+
*.swp
11+
*~.nib
12+
local.properties
13+
.settings/
14+
.loadpath
15+
16+
# Eclipse Core
17+
.project
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# JDT-specific (Eclipse Java Development Tools)
29+
.classpath
30+
31+
# Java annotation processor (APT)
32+
.factorypath
33+
34+
# PDT-specific
35+
.buildpath
36+
37+
# sbteclipse plugin
38+
.target
39+
40+
# TeXlipse plugin
41+
.texlipse
42+
43+
44+
### Java ###
45+
*.class
46+
47+
# Mobile Tools for Java (J2ME)
48+
.mtj.tmp/
49+
50+
# Package Files #
51+
*.jar
52+
*.war
53+
*.ear
54+
55+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
56+
hs_err_pid*
57+
58+
59+
### Maven ###
60+
target/
61+
pom.xml.tag
62+
pom.xml.releaseBackup
63+
pom.xml.versionsBackup
64+
pom.xml.next
65+
release.properties
66+
dependency-reduced-pom.xml
67+
buildNumber.properties
68+
.mvn/timing.properties
69+
70+
71+
### Vault ###
72+
.vlt
73+
*.cnd
74+
75+
76+
### IntelliJ ###
77+
.idea/
78+
*.iml
79+
80+
81+
### Node.js ###
82+
83+
# Log files
84+
*.log
85+
86+
# NPM
87+
node_modules
88+
yarn.lock
89+
90+
# builds
91+
build
92+
dist
93+
.rpt2_cache
94+
95+
# Frontend Maven Plugin
96+
node/
97+
98+
# Tests
99+
coverage/
100+
reports/
101+
102+
# Gradle
103+
!/gradle/wrapper/gradle-wrapper.jar
104+
105+
# misc
106+
.DS_Store
107+
.env
108+
.env.local
109+
.env.development.local
110+
.env.test.local
111+
.env.production.local
112+
113+
npm-debug.log*
114+
yarn-debug.log*
115+
yarn-error.log*
116+
117+
# intelliJ
118+
.idea
119+
120+
# vscode
121+
.vscode

CONTRIBUTING.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Contributing to Stubway
2+
3+
Write warm welcome and say how grateful you are for considering contribution into your project
4+
5+
Argue why it's important to go through this document
6+
7+
## Code of Conduct
8+
9+
Explain how you expect participants to behave.
10+
11+
## Report a bug
12+
Put belowed as a mandatory part:
13+
14+
> If you find a security vulnerability, do NOT open an issue. Email XXXX instead.
15+
16+
Describe your expecations regarding bug report. This can be simple link to issue template.
17+
18+
## Suggest a feature
19+
20+
Describe your expectation regarding new features idea and direction which your project want to go. Ask contributors to
21+
argue why raised feature is needed in their opinion and how it might work.
22+
23+
## Contribute into codebase
24+
25+
Explain:
26+
* preferred style for code. Put reference to code styleguide if possible.
27+
* branching model.
28+
* commit message conventions.
29+
* labeling conventions (if used).
30+
* how a contribution gets accepted after it's been submitted. Who need to review and accept it.

0 commit comments

Comments
 (0)