first commit
This commit is contained in:
40
app/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
40
app/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
name: Bug Report
|
||||
about: Report a bug or issue with the project
|
||||
title: "[Bug] "
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Bug Description
|
||||
|
||||
Provide a detailed description of the bug or issue.
|
||||
|
||||
|
||||
### Steps to Reproduce
|
||||
|
||||
1. Step one
|
||||
2. Step two
|
||||
3. Step three
|
||||
|
||||
### Expected Behavior
|
||||
|
||||
Explain what you expected to happen.
|
||||
|
||||
|
||||
### Actual Behavior
|
||||
|
||||
Describe what actually happened, including any error messages or logs.
|
||||
|
||||
|
||||
### Screenshots (if applicable)
|
||||
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
|
||||
### Environment Information:
|
||||
|
||||
- Operating System: [e.g., macOS, Windows, Linux]
|
||||
- Browser (if applicable): [e.g., Chrome, Firefox]
|
||||
- Version: [e.g., 1.0.0]
|
||||
22
app/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
22
app/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
name: Feature Request
|
||||
about: Suggest a new feature for the project
|
||||
title: "[Feature Request] "
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Feature Request Description
|
||||
|
||||
Provide a clear and concise description of the feature you’d like to request.
|
||||
|
||||
|
||||
### Why Is This Feature Needed?
|
||||
|
||||
Explain why the feature would be useful or necessary.
|
||||
|
||||
|
||||
### Additional Context
|
||||
|
||||
Add any other context or screenshots that may help describe the feature request.
|
||||
24
app/.github/PULL_REQUEST_TEMPLATE/bug_fix.md
vendored
Normal file
24
app/.github/PULL_REQUEST_TEMPLATE/bug_fix.md
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
### Description
|
||||
|
||||
Please include a summary of the changes and the motivation behind them. Also include any relevant context or links to related issues.
|
||||
|
||||
**Related Issues:**
|
||||
|
||||
- Issue # (if applicable)
|
||||
- Link to related issue or ticket (if applicable)
|
||||
|
||||
### Changes Made
|
||||
|
||||
- Describe what changes were made in this pull request.
|
||||
- Include any relevant details about the implementation.
|
||||
|
||||
### Checklist
|
||||
|
||||
- [ ] I have tested my changes locally.
|
||||
- [ ] I have updated the documentation (if applicable).
|
||||
- [ ] I have included unit tests (if applicable).
|
||||
- [ ] My code follows the project's coding style.
|
||||
|
||||
### Screenshots (if applicable)
|
||||
|
||||

|
||||
24
app/.github/PULL_REQUEST_TEMPLATE/documentation.md
vendored
Normal file
24
app/.github/PULL_REQUEST_TEMPLATE/documentation.md
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
name: Documentation Update
|
||||
about: Submit a pull request for updating documentation
|
||||
title: "[Docs] "
|
||||
labels: documentation, needs review
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Documentation Changes
|
||||
|
||||
Please describe the changes you are making to the documentation.
|
||||
|
||||
### Related Code Changes (if applicable)
|
||||
|
||||
If your documentation relates to any new code changes, please provide context or links to those changes.
|
||||
|
||||
### Reason for Change
|
||||
|
||||
Why are these documentation updates necessary?
|
||||
|
||||
### Screenshots (if applicable)
|
||||
|
||||
If updating visual elements of documentation, provide screenshots or examples.
|
||||
28
app/.github/PULL_REQUEST_TEMPLATE/feature_request.md
vendored
Normal file
28
app/.github/PULL_REQUEST_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
name: Feature Request
|
||||
about: Submit a pull request for adding a new feature
|
||||
title: "[Feature] "
|
||||
labels: enhancement, needs review
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Description of the Feature
|
||||
|
||||
Briefly describe the new feature you are implementing.
|
||||
|
||||
**Related Issue:** (if any)
|
||||
|
||||
### Changes Made
|
||||
|
||||
1. context-menu-list the specific changes made in the code.
|
||||
2. Explain the new functionality and how it improves the project.
|
||||
|
||||
### Testing and Documentation
|
||||
|
||||
1. Steps for testing the new feature.
|
||||
2. Any documentation updates made.
|
||||
|
||||
### Screenshots (if applicable)
|
||||
|
||||
Add any screenshots or visuals demonstrating the feature.
|
||||
0
app/.github/workflows/ci.yml
vendored
Normal file
0
app/.github/workflows/ci.yml
vendored
Normal file
24
app/.github/workflows/deploy-docs.yml
vendored
Normal file
24
app/.github/workflows/deploy-docs.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: Deploy Docsify
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Build Docsify site
|
||||
run: docsify serve docs --port 4000
|
||||
Reference in New Issue
Block a user