Skip to content

Commit d598b4b

Browse files
authored
Merge pull request #3 from video-db/ashu/readme
Changes to readme and setup files.
2 parents 0fb1f53 + 33f9224 commit d598b4b

File tree

8 files changed

+275
-105
lines changed

8 files changed

+275
-105
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
labels: ['bug']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: checkboxes
10+
attributes:
11+
label: Confirm this is a new bug report
12+
description: >
13+
Select the checkboxes that apply to this bug report. If you're not sure about any of these, don't worry! We'll help you figure it out.
14+
options:
15+
- label: Possible new bug in VideoDB Python Client
16+
required: false
17+
- label: Potential new bug in VideoDB API
18+
required: false
19+
- label: I've checked the current issues, and there's no record of this bug
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Current Behavior
24+
description: >
25+
A clear and concise description of what the bug is.
26+
placeholder: >
27+
I intended to perform action X, but unexpectedly encountered outcome Y.
28+
validations:
29+
required: true
30+
- type: textarea
31+
attributes:
32+
label: Expected Behavior
33+
description: >
34+
A clear and concise description of what you expected to happen.
35+
placeholder: >
36+
I expected outcome Y to occur.
37+
validations:
38+
required: true
39+
- type: textarea
40+
attributes:
41+
label: Steps to Reproduce
42+
description: >
43+
Steps to reproduce the behavior:
44+
placeholder: |
45+
1. Fetch a '...'
46+
2. Update the '....'
47+
3. See error
48+
validations:
49+
required: true
50+
- type: textarea
51+
attributes:
52+
label: Relevant Logs and/or Screenshots
53+
description: >
54+
If applicable, add logs and/or screenshots to help explain your problem.
55+
validations:
56+
required: false
57+
- type: textarea
58+
attributes:
59+
label: Environment
60+
description: |
61+
Please complete the following information:
62+
eg:
63+
- OS: Ubuntu 20.04
64+
- Python: 3.9.1
65+
- Videodb: 0.0.1
66+
value: |
67+
- OS:
68+
- Python:
69+
- Videodb:
70+
validations:
71+
required: false
72+
- type: textarea
73+
attributes:
74+
label: Additional Context
75+
description: >
76+
Add any other context about the problem here.
77+
validations:
78+
required: false
79+
+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Feature
2+
description: Submit a proposal/request for a new feature
3+
labels: ['enhancement']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this feature request!
9+
- type: checkboxes
10+
attributes:
11+
label: Confirm this is a new feature request
12+
description: >
13+
Select the checkboxes that apply to this feature request. If you're not sure about any of these, don't worry! We'll help you figure it out.
14+
options:
15+
- label: Possible new feature in VideoDB Python Client
16+
required: false
17+
- label: Potential new feature in VideoDB API
18+
required: false
19+
- label: I've checked the current issues, and there's no record of this feature request
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Describe the feature
24+
description: >
25+
A clear and concise description of what the feature is and why it's needed.
26+
validations:
27+
required: true
28+
- type: textarea
29+
attributes:
30+
label: Describe the solution you'd like
31+
description: |
32+
A clear and concise description of what you want to happen.
33+
validations:
34+
required: true
35+
- type: textarea
36+
attributes:
37+
label: Describe alternatives you've considered
38+
description: >
39+
A clear and concise description of any alternative solutions or features you've considered.
40+
validations:
41+
required: false
42+
- type: textarea
43+
attributes:
44+
label: Additional Context
45+
description: >
46+
Add any other context about the feature request here.
47+
validations:
48+
required: false

.github/pull_request_template.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Pull Request
2+
3+
**Description:**
4+
Describe the purpose of this pull request.
5+
6+
**Changes:**
7+
- [ ] Feature A
8+
- [ ] Bugfix B
9+
10+
**Related Issues:**
11+
- Closes #123
12+
- Addresses #456
13+
14+
**Testing:**
15+
Describe any testing steps that have been taken or are necessary.
16+
Make sure to take in account any existing code change that require some feature to be re-tested.
17+
18+
19+
**Checklist:**
20+
- [ ] Code follows project coding standards
21+
- [ ] Tests have been added or updated
22+
- [ ] Code Review
23+
- [ ] Manual test after merge
24+
- [ ] All checks passed

0 commit comments

Comments
 (0)