forked from hiteshchoudhary/apihub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/hiteshchoudhary/apihub into…
… feat/coverage
- Loading branch information
Showing
7 changed files
with
190 additions
and
36 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: 🐞 Bug report | ||
description: Create a report to help us improve | ||
title: "BUG: <title>" | ||
|
||
labels: | ||
- bug | ||
|
||
body: | ||
- type: textarea | ||
id: bug_description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduce_steps | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behavior. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: expected_behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem. | ||
|
||
- type: input | ||
id: os_info | ||
attributes: | ||
label: OS | ||
description: Operating System information (e.g., iOS). | ||
placeholder: MacOS | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: version_info | ||
attributes: | ||
label: OS Version | ||
description: OS Version information. | ||
placeholder: "13.1" | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: client_info | ||
attributes: | ||
label: Client | ||
description: Client information (e.g., postman, thunder client, chrome, safari). | ||
placeholder: Postman | ||
validations: | ||
required: false | ||
|
||
|
||
|
||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Additional context or Information | ||
description: Add any other context or any other information about the problem here. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: FreeAPI Discord Server | ||
url: https://discord.gg/uuGBkhX8Yp | ||
about: Please ask and answer questions related to FreeAPI here. | ||
- name: Learn FreeAPI here | ||
url: https://www.youtube.com/playlist?list=PLRAV69dS1uWSx4erHGq8hW_GE-Eaj60r- | ||
about: Gain comprehensive knowledge of FreeAPI through this curated playlist. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: 🌟 Feature Request | ||
description: Suggest an enhancement, new feature or anything | ||
title: "FEATURE: <title>" | ||
|
||
labels: | ||
- enhancement | ||
|
||
body: | ||
- type: textarea | ||
id: feature_description | ||
attributes: | ||
label: Describe the Feature | ||
description: A clear and concise description of the proposed feature or enhancement. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: use_case | ||
attributes: | ||
label: Use Case | ||
description: Provide a scenario or use case where this feature would be beneficial. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional_info | ||
attributes: | ||
label: Additional Information | ||
description: Add any extra details or considerations that might be relevant. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: suggested_tools | ||
attributes: | ||
label: Suggested Tools | ||
description: List any tools or technologies you suggest for implementing this feature. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Additional Context or Information | ||
description: Add any other context or information that might be useful for understanding the feature request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: 🚀 Frontend Contribution | ||
description: Share details about your frontend application for contribution to FreeAPI. | ||
title: "FRONTEND: <title>" | ||
|
||
labels: | ||
- frontend | ||
- enhancement | ||
|
||
body: | ||
- type: input | ||
id: app_title | ||
attributes: | ||
label: Frontend App Title | ||
description: Provide a title for your frontend application. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: overview | ||
attributes: | ||
label: Overview | ||
description: Briefly describe your frontend application. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: detailed_features | ||
attributes: | ||
label: Detailed Features | ||
description: List the features of your frontend application in detail. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: tech_stack | ||
attributes: | ||
label: Tech Stack Used | ||
description: Specify the technologies used in your frontend application (comma-separated). | ||
placeholder: "ReactJs, redux, tailwindCSS..." | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: platform | ||
attributes: | ||
label: Built For Platform | ||
description: Specify the platform on which this application will run. | ||
placeholder: "web, mobile, desktop..." | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: project_path | ||
attributes: | ||
label: Project Path | ||
description: Provide the path to your project within the FreeAPI project's `examples` folder. | ||
placeholder: E.g. $ROOT_FOLDER/examples/apps/social-media/web/react-redux-tailwind/<your_project_folders> | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters