Skip to content

Commit 9706af4

Browse files
author
David Rodriguez
committed
Initial Commit
0 parents  commit 9706af4

23 files changed

+3421
-0
lines changed

.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
DB_HOST =
2+
DB_USER =
3+
DB_PASSWORD =
4+
DB_NAME =

.eslintrc.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"extends": "eslint:recommended",
3+
"rules": {
4+
"semi": ["error", "always"],
5+
"quotes": ["error", "single"],
6+
"indent": ["error", 2],
7+
"no-alert": "error",
8+
"require-await": "error",
9+
"no-var": "error"
10+
},
11+
"env": {
12+
"browser": true,
13+
"node": true,
14+
"es6": true
15+
}
16+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: 'BUG:'
5+
labels: bug
6+
assignees:
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: 'Feature Request:'
5+
labels: enhancement
6+
assignees:
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## Proposed changes
2+
3+
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.
4+
5+
## Types of changes
6+
7+
What types of changes does your code introduce to Keeper?
8+
_Put an `X` in the boxes that apply_
9+
10+
> Remove the options that are not applicable. All pull requests must check off all boxes in the pull request body or your pull request will automatically fail.
11+
12+
- [ ] Bugfix (non-breaking change which fixes an issue)
13+
- [ ] New feature (non-breaking change which adds functionality)
14+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
15+
- [ ] Documentation Update (if none of the other choices apply)
16+
17+
## Checklist
18+
19+
_Put an `X` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._
20+
21+
- [ ] I have read the [CONTRIBUTING](https://github.com/davidsaulrodriguez/nodejs-repo-template/blob/master/CONTRIBUTING.md) doc
22+
- [ ] I have read the [BRANCHING MODEL](https://github.com/davidsaulrodriguez/nodejs-repo-template/blob/master/BRANCHINGMODEL.md) doc
23+
- [ ] Lint and unit tests pass locally with my changes
24+
- [ ] I have added tests that prove my fix is effective or that my feature works
25+
- [ ] I have added necessary documentation (if appropriate)
26+
- [ ] Any dependent changes have been merged and published in downstream modules
27+
28+
## Further comments
29+
30+
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...

.github/wip.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
terms:
2+
- wip
3+
- work in progress
4+
- dnm
5+
- 🚧
6+
- 🔨
7+
- 🔧
8+
-
9+
-
10+
- 🛠
11+
locations: title

0 commit comments

Comments
 (0)