Skip to content

Commit 26e1a7e

Browse files
authored
Merge branch 'main' into feat/message-templates
2 parents 18fa18f + 92681b7 commit 26e1a7e

File tree

6 files changed

+56
-11
lines changed

6 files changed

+56
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ assignees: ''
77

88
---
99

10-
**Describe the bug**
10+
### Description
1111
A clear and concise description of what the bug is.
1212

13-
**To Reproduce**
13+
### To Reproduce
1414
Steps to reproduce the behavior:
1515
1. Start Container
1616
2. Send Request
1717
3. [...]
1818

19-
**Expected behavior**
19+
### Expected behavior
2020
A clear and concise description of what you expected to happen.
2121

22-
**Additional context**
22+
### Additional Context
2323
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ assignees: ''
77

88
---
99

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 [...]
10+
### Description
11+
A clear and concise description of the feature. (is it related to a problem?)
1212

13-
**Describe the solution you'd like**
13+
### Solution
1414
A clear and concise description of what you want to happen.
1515

16-
**Describe alternatives you've considered**
16+
### Alternatives
1717
A clear and concise description of any alternative solutions or features you've considered.
1818

19-
**Additional context**
19+
### Additional Context
2020
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Summary
2+
Describe what this PR does.
3+
4+
### Changes
5+
* List major changes
6+
7+
### Checklist
8+
- [ ] PR tested
9+
- [ ] Docs updated (if applicable)
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Bug fix
3+
about: Submit a Bugfix
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
### Issue
11+
Fixes # (issue)
12+
13+
### Changes
14+
* Describe the fix clearly
15+
* Mention root cause if known
16+
17+
### Verification
18+
- [ ] Tested locally
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature addition
3+
about: Add a Feature
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
### Summary
11+
Describe the new feature and motivation.
12+
13+
### Changes
14+
* List major additions
15+
16+
### Checklist
17+
- [ ] Feature tested
18+
- [ ] Docs updated

utils/config/loader.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func Load() {
7070
}
7171

7272
func InitEnv() {
73-
ENV.PORT = strconv.Itoa(config.Int("server.port"))
73+
ENV.PORT = strconv.Itoa(config.Int("service.port"))
7474

7575
ENV.LOG_LEVEL = strings.ToLower(config.String("loglevel"))
7676

@@ -107,4 +107,4 @@ func LoadConfig() {
107107

108108
func transformVariables(key string, value any) (string, any) {
109109
return strings.ToUpper(key), value
110-
}
110+
}

0 commit comments

Comments
 (0)