Skip to content

Commit f9e5591

Browse files
committed
Add Issues Templates
1 parent 86fccca commit f9e5591

File tree

3 files changed

+131
-0
lines changed

3 files changed

+131
-0
lines changed
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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+
16+
1. Having the following folder structure
17+
18+
<!-- Describe or use the command `$ tree -v` and paste below -->
19+
20+
<details>
21+
<summary> Project structure </summary>
22+
23+
```bash
24+
25+
# /path/
26+
# ...../folder/...
27+
# please provide your folder structure here
28+
29+
```
30+
</details>
31+
32+
2. Having the following config files:
33+
34+
<!-- Please adjust if you are using different files and formats! -->
35+
36+
<details>
37+
<summary> Config files </summary>
38+
39+
**/path/.env**
40+
```bash
41+
Your .env content here
42+
```
43+
44+
and
45+
46+
**/path/settings.toml**
47+
```toml
48+
[default]
49+
```
50+
51+
</details>
52+
53+
3. Having the following app code:
54+
55+
<details>
56+
<summary> Code </summary>
57+
58+
**/path/src/app.py**
59+
```python
60+
from dynaconf import settings
61+
...
62+
```
63+
64+
</details>
65+
66+
4. Executing under the following environment
67+
68+
<details>
69+
<summary> Execution </summary>
70+
71+
```bash
72+
# other commands and details?
73+
# virtualenv activation?
74+
75+
$ python /path/src/app.py
76+
```
77+
78+
</details>
79+
80+
**Expected behavior**
81+
A clear and concise description of what you expected to happen.
82+
83+
**Debug output**
84+
85+
<details>
86+
<summary> Debug Output </summary>
87+
88+
```bash
89+
90+
export `DEBUG_LEVEL_FOR_DYNACONF=DEBUG` reproduce your problem and paste the output here
91+
92+
```
93+
94+
</details>
95+
96+
**Environment (please complete the following information):**
97+
- OS: [e.g. Linux/Fedora29, Windows/x.x.x, Linux/Ubuntu16.x]
98+
- Dynaconf Version [e.g. 2.0.0/source]
99+
- Frameworks in use (Flask, Django? versions..)
100+
101+
**Additional context**
102+
Add any other context about the problem here.
103+
s

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Discussion
3+
about: Discussions, questions, etc...
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
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: "[RFC]"
5+
labels: Not a Bug, RFC
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.

0 commit comments

Comments
 (0)