Skip to content

Commit d403505

Browse files
committed
Initial commit
0 parents  commit d403505

File tree

7 files changed

+144
-0
lines changed

7 files changed

+144
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "Bug Report"
3+
about: "You found something that is not working. Report it so that it can be fixed. 👷‍"
4+
title: "Fix: "
5+
labels: "type : bug"
6+
---
7+
8+
## Issue
9+
10+
Describe the issue you are facing. Show us the implementation: screenshots, gif, etc.
11+
12+
## Expected
13+
14+
Describe what should be the correct behaviour.
15+
16+
## Steps to reproduce
17+
18+
1.
19+
2.
20+
3.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: "Chore"
3+
about: "Open a Chore for minor update."
4+
title: "Update "
5+
labels: "type : chore"
6+
---
7+
8+
## Why
9+
10+
Describe the update details and why it's needed.
11+
12+
## Who Benefits?
13+
14+
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients...
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: "Feature"
3+
about: "Open a feature issue to add new functionalities."
4+
title: "Add "
5+
labels: "type : feature"
6+
---
7+
8+
## Why
9+
10+
Describe the big picture of the feature and why it's needed.
11+
12+
## Who Benefits?
13+
14+
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients...

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
https://github.com/nimblehq/git-template/issues/??
2+
3+
## What happened 👀
4+
5+
Describe the big picture of your changes here to communicate to the team why we should accept this pull request.
6+
7+
## Insight 📝
8+
9+
Describe in details how to test the changes, which solution you tried but did not go with, referenced documentation is welcome as well.
10+
11+
## Proof Of Work 📹
12+
13+
Show us the implementation: screenshots, gif, etc.

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
*.gem
2+
*.rbc
3+
/.config
4+
/.idea
5+
/coverage/
6+
/InstalledFiles
7+
/node-modules
8+
/pkg/
9+
/spec/reports/
10+
/spec/examples.txt
11+
/test/tmp/
12+
/test/version_tmp/
13+
/tmp/
14+
15+
# Used by dotenv library to load environment variables.
16+
# .env
17+
18+
## Documentation cache and generated files:
19+
/.yardoc/
20+
/_yardoc/
21+
/doc/
22+
/rdoc/
23+
24+
## Environment normalization:
25+
/.bundle/
26+
/vendor/bundle
27+
/lib/bundler/man/
28+
29+
# for a library or gem, you might want to ignore these files since the code is
30+
# intended to run in multiple environments; otherwise, check them in:
31+
# Gemfile.lock
32+
# .ruby-version
33+
# .ruby-gemset
34+
35+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
36+
.rvmrc

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2014 and onwards Nimble.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Git Repository Template
2+
3+
Project repository template to set up all public projects at [Nimble](https://nimblehq.co/)
4+
5+
## Usage
6+
7+
Clone the repository
8+
9+
`git clone git@github.com:nimblehq/git-template.git`
10+
11+
## License
12+
13+
This project is Copyright (c) 2014 and onwards. It is free software,
14+
and may be redistributed under the terms specified in the [LICENSE] file.
15+
16+
[LICENSE]: /LICENSE
17+
18+
## About
19+
20+
![Nimble](https://assets.nimblehq.co/logo/dark/logo-dark-text-160.png)
21+
22+
This project is maintained and funded by Nimble.
23+
24+
We love open source and do our part in sharing our work with the community!
25+
See [our other projects][community] or [hire our team][hire] to help build your product.
26+
27+
[community]: https://github.com/nimblehq
28+
[hire]: https://nimblehq.co/

0 commit comments

Comments
 (0)