|
| 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 |
0 commit comments