You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolve merge conflicts: integrate main branch changes with aiChat fix
- Resolved conflict in app/controller/app-center/aiChat.ts
- Kept the main branch's token handling and uploadFile method
- The original 'aiChat is undefined' issue is already fixed in main branch
- Main branch uses correct service path: ctx.service.appCenter.aiChat
description: Create a report to help us improve Tiny Engine
3
+
title: '🐛 [Bug]: '
4
+
labels: ['🐛 bug']
5
+
body:
6
+
- type: markdown
7
+
attributes:
8
+
value: |
9
+
Please fill out the following carefully in order to better fix the problem.
10
+
- type: input
11
+
id: Environment
12
+
attributes:
13
+
label: Environment
14
+
description: |
15
+
**Depending on your browser and operating system, websites may behave differently from one environment to another. Make sure your developers know your technical environment.**
16
+
placeholder: Please browser information.
17
+
validations:
18
+
required: true
19
+
- type: input
20
+
id: node-version
21
+
attributes:
22
+
label: Version
23
+
description: |
24
+
### **Check if the issue is reproducible with the latest stable version.**
25
+
You can use the command `node -v` to view it
26
+
placeholder: latest
27
+
validations:
28
+
required: true
29
+
- type: input
30
+
id: tiny-vue-version
31
+
attributes:
32
+
label: Version
33
+
description: |
34
+
### **Check if the issue is reproducible with the latest stable version.**
35
+
You can use the command `npm ls @opentiny/vue` to view it
36
+
placeholder: latest
37
+
validations:
38
+
required: true
39
+
- type: textarea
40
+
id: minimal-repo
41
+
attributes:
42
+
label: Link to minimal reproduction
43
+
description: |
44
+
**Provide a streamlined CodePen / CodeSandbox or GitHub repository link as much as possible. Please don't fill in a link randomly, it will only close your issue directly.**
45
+
placeholder: Please Input
46
+
validations:
47
+
required: true
48
+
- type: textarea
49
+
id: reproduce
50
+
attributes:
51
+
label: Step to reproduce
52
+
description: |
53
+
**After the replay is turned on, what actions do we need to perform to make the bug appear? Simple and clear steps can help us locate the problem more quickly. Please clearly describe the steps of reproducing the issue. Issues without clear reproducing steps will not be repaired. If the issue marked with 'need reproduction' does not provide relevant steps within 7 days, it will be closed directly.**
54
+
placeholder: Please Input
55
+
validations:
56
+
required: true
57
+
- type: textarea
58
+
id: expected
59
+
attributes:
60
+
label: What is expected
61
+
placeholder: Please Input
62
+
- type: textarea
63
+
id: actually
64
+
attributes:
65
+
label: What is actually happening
66
+
placeholder: Please Input
67
+
- type: textarea
68
+
id: additional-comments
69
+
attributes:
70
+
label: Any additional comments (optional)
71
+
description: |
72
+
**Some background / context of how you ran into this bug.**
description: Propose new features to @opentiny/tiny-engine-webservice to improve it.
3
+
title: '✨ [Feature]: '
4
+
labels: ['✨ feature']
5
+
body:
6
+
- type: textarea
7
+
id: feature-solve
8
+
attributes:
9
+
label: What problem does this feature solve
10
+
description: |
11
+
Explain your use case, context, and rationale behind this feature request. More importantly, what is the end user experience you are trying to build that led to the need for this feature?
12
+
placeholder: Please Input
13
+
validations:
14
+
required: true
15
+
- type: textarea
16
+
id: feature-api
17
+
attributes:
18
+
label: What does the proposed API look like
19
+
description: |
20
+
Describe how you propose to solve the problem and provide code samples of how the API would work once implemented. Note that you can use Markdown to format your code blocks.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,15 +17,15 @@ When you personally use the TinyEngine and participate in many of the above cont
17
17
### Bug Reports
18
18
If you encounter problems when using TinyEngine-webservice, please submit an issue to us. Before submitting an issue, read the related official documents carefully to check whether the issue is a defect or a function that has not been implemented.
19
19
20
-
If the issue is a defect, select the bug report template when creating a new issue. The title must comply with the defect description format. For example, [tiny-engine-webservice] cannot be refreshed.
20
+
If the issue is a defect, select the bug report template when creating a new issue. The title must comply with the defect description format. For example, [TinyEngine-webservice] cannot be refreshed.
21
21
22
22
To report a defect, you need to fill in the following information:
23
23
24
-
*Tiny-engine-webservice and node version numbers
24
+
*TinyEngine-webservice and node version numbers
25
25
*Screenshots can be used to describe the defect. If an error is reported, the error information can be posted.
26
26
* It is recommended that a minimum demo link be provided to reproduce the defect.
27
27
28
-
If the feature is a new feature, select the Feature request template. The title complies with the format of the new feature description, for example, [tiny-engine-webservice].
28
+
If the feature is a new feature, select the Feature request template. The title complies with the format of the new feature description, for example, [TinyEngine-webservice].
29
29
30
30
For an issue of a new feature, you need to fill in the following information:
31
31
@@ -38,16 +38,16 @@ Before submitting pull request, please make sure that your submission is in line
38
38
39
39
Local startup steps:
40
40
41
-
* Click Fork in the upper right corner of the TinyEngine-webservice code repository to fork the upstream repository to the personal repository.
41
+
* Click Fork in the upper right corner of the tiny-engine-webservice code repository to fork the upstream repository to the personal repository.
42
42
* Clone personal warehouse to local
43
-
* Run npm install in the TinyEngine-webservice root directory to install the dependency.
44
-
* Modify related configurations in the config folder in the TinyEngine-webservice root directory.
45
-
* Run npm run dev in the root directory of TinyEngine-webservice to start local development.
43
+
* Run npm install in the tiny-engine-webservice root directory to install the dependency.
44
+
* Modify related configurations in the config folder in the tiny-engine-webservice root directory.
45
+
* Run npm run dev in the root directory of tiny-engine-webservice to start local development.
46
46
47
47
```
48
48
# username indicates the user name. Replace it before running the command.
0 commit comments