Skip to content

Commit 3b97fc7

Browse files
committed
Merge branch 'dev' of github.com:haniffalab/strapi-api into dev
2 parents 659a0e3 + 2df2aea commit 3b97fc7

6 files changed

Lines changed: 109 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug Report
3+
about: Report a problem with the software
4+
title: "[Bug] "
5+
labels: bug
6+
assignees: ""
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
15+
1. Go to '...'
16+
2. Click on '...'
17+
3. See error
18+
19+
**Expected behavior**
20+
A clear and concise description of what you expected to happen.
21+
22+
**Screenshots (if applicable)**
23+
If applicable, add screenshots to help explain the problem.
24+
25+
**Environment (please complete the following information):**
26+
27+
- OS: [e.g., Windows, macOS, Linux]
28+
- Python/Node/Django/etc. version: [e.g., Python 3.9]
29+
- Browser (if applicable): [e.g., Chrome, Firefox]
30+
31+
**Additional context**
32+
Add any other context about the problem here.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Documentation Update
3+
about: Request changes or improvements to the documentation
4+
title: "[Docs] "
5+
labels: documentation
6+
assignees: ""
7+
---
8+
9+
**What needs updating?**
10+
Describe what section of the documentation needs improvement.
11+
12+
**Where should this be updated?**
13+
Provide links or file paths if possible.
14+
15+
**Additional context**
16+
Add any other relevant context about the documentation request.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a new feature or improvement
4+
title: "[Feature] "
5+
labels: enhancement
6+
assignees: ""
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.**
10+
A clear and concise description of what the problem is.
11+
12+
**Describe the solution you'd like**
13+
A clear and concise description of what you want to happen.
14+
15+
**Describe alternatives you've considered**
16+
A clear and concise description of any alternative solutions or features you've considered.
17+
18+
**Additional context**
19+
Add any other context or screenshots about the feature request here.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Optimisation Request
3+
about: Suggest a performance or efficiency improvement
4+
title: "[Optimisation] "
5+
labels: optimisation, enhancement
6+
assignees: ""
7+
---
8+
9+
**Is your optimisation request related to a specific problem?**
10+
A clear and concise description of the inefficiency or area for improvement.
11+
12+
**Describe the proposed solution**
13+
A clear and concise description of how the optimisation could be achieved.
14+
(For example: refactoring code, reducing memory usage, improving response time, etc.)
15+
16+
**Current performance**
17+
(Optional) If available, provide benchmarks, logs, or profiling data showing current performance.
18+
19+
**Expected performance improvement**
20+
(Optional) If possible, describe the expected impact of the optimisation.
21+
22+
**Additional context**
23+
Add any other context or references (e.g., related issues, profiling tools used).

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Description
2+
3+
Give a brief summary of changes...
4+
5+
Fixes # (issue)
6+
7+
## Type of change
8+
9+
- [ ] Documentation (non-breaking change that adds or improves the documentation)
10+
- [ ] New feature (non-breaking change which adds functionality)
11+
- [ ] Optimization (non-breaking, back-end change that speeds up the code)
12+
- [ ] Bug fix (non-breaking change which fixes an issue)
13+
- [ ] Breaking change (whatever its nature)
14+
15+
## Checklist
16+
17+
- [ ] All tests pass (eg. `npm test`)
18+
- [ ] Pre-commit hooks run successfully (eg. `pre-commit run --all-files`)

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"author": "Haniffa Lab",
88
"scripts": {
99
"build": "strapi build",
10+
"dev": "npm run develop",
1011
"develop": "strapi develop",
1112
"gcp-build": "strapi build",
1213
"lint": "eslint --ext .js src",

0 commit comments

Comments
 (0)