Skip to content

Commit

Permalink
Stubway 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Rogacki authored and piotr-rogacki-wttech committed Jun 12, 2022
0 parents commit c1d8a29
Show file tree
Hide file tree
Showing 79 changed files with 3,318 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Expected Behavior


## Actual Behavior


## Steps to Reproduce the Problem

1.
1.
1.

## Specifications

- Tool Version:
- AEM version:

## Additional description
Optional field.

Everything what can help to reproduce an issue or any additional motivation why you think such feature would be useful.
31 changes: 31 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# One-line summary

> Issue : #1234 (only if appropriate)
## Description
A few sentences describing the overall goals of the pull request's
commits.

## Types of Changes
_What types of changes does your code introduce? Keep the ones that apply:_

- New feature (non-breaking change which adds functionality)
- Bug fix (non-breaking change which fixes an issue)
- Configuration change
- Refactor/improvements
- Documentation / non-code

## Tasks
_List of tasks need do to complete the PR_
- [ ] Created Task 1
- [ ] Created Task 2
- [ ] To-do Task 3

## Review
_List of tasks the reviewer must do to review the PR_
- [ ] Tests
- [ ] Documentation
- [ ] CHANGELOG

## Deployment Notes
These should highlight any feature toggles, additional steps etc.
121 changes: 121 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# Created by https://www.gitignore.io/api/eclipse,java,maven

### Eclipse ###
*.pydevproject
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath

# Eclipse Core
.project

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# JDT-specific (Eclipse Java Development Tools)
.classpath

# Java annotation processor (APT)
.factorypath

# PDT-specific
.buildpath

# sbteclipse plugin
.target

# TeXlipse plugin
.texlipse


### Java ###
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*


### Maven ###
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties


### Vault ###
.vlt
*.cnd


### IntelliJ ###
.idea/
*.iml


### Node.js ###

# Log files
*.log

# NPM
node_modules
yarn.lock

# builds
build
dist
.rpt2_cache

# Frontend Maven Plugin
node/

# Tests
coverage/
reports/

# Gradle
!/gradle/wrapper/gradle-wrapper.jar

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# intelliJ
.idea

# vscode
.vscode
30 changes: 30 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Contributing to Stubway

Write warm welcome and say how grateful you are for considering contribution into your project

Argue why it's important to go through this document

## Code of Conduct

Explain how you expect participants to behave.

## Report a bug
Put belowed as a mandatory part:

> If you find a security vulnerability, do NOT open an issue. Email XXXX instead.
Describe your expecations regarding bug report. This can be simple link to issue template.

## Suggest a feature

Describe your expectation regarding new features idea and direction which your project want to go. Ask contributors to
argue why raised feature is needed in their opinion and how it might work.

## Contribute into codebase

Explain:
* preferred style for code. Put reference to code styleguide if possible.
* branching model.
* commit message conventions.
* labeling conventions (if used).
* how a contribution gets accepted after it's been submitted. Who need to review and accept it.
Loading

0 comments on commit c1d8a29

Please sign in to comment.