-
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.
- Loading branch information
Showing
5 changed files
with
135 additions
and
125 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
121 changes: 121 additions & 0 deletions
121
client/components/planning/TemplateSection/templates.ts
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,121 @@ | ||
export const DEFAULT_TEMPLATES = { | ||
feature: { | ||
title: 'β¨ Feature: [Feature Name]', | ||
description: `## π Overview | ||
A concise description of what this feature is and its expected impact. Mention the key user benefit or problem it solves. | ||
### π― Goals | ||
- Main goal of the feature. | ||
- Secondary goals or benefits, if any. | ||
## π Requirements | ||
Briefly list the core requirements or conditions this feature must meet. Detailed requirements can be managed as subtasks. | ||
## π Links | ||
- **Project Tracking:** [Link_to_project_management_tool_or_ticket](#) | ||
- **Related Documents:** [Link_to_related_documents_or_resources](#) | ||
- **Design Resources:** [Link_to_design_resources_or_assets](#) | ||
- **API Documentation:** [Link_to_API_documentation](#) | ||
- **Other Relevant Links:** [Miscellaneous_links](#) | ||
## π Development Steps | ||
Outline the major steps or phases in development. Use subtasks to manage detailed tasks and changes. | ||
1. [General step 1] | ||
2. [General step 2] | ||
3. [Add more as needed] | ||
## π§ͺ Testing Strategy | ||
- **π Unit Tests:** Key areas to cover. | ||
- **βοΈ Integration Tests:** Important interactions with other features or services. | ||
- **π₯ User Acceptance Testing (UAT):** Criteria for UAT and key user scenarios. | ||
## π Dependencies | ||
List any internal or external dependencies that could affect this feature's development timeline. | ||
## β³ Time Estimate | ||
Provide a rough estimate for scheduling purposes. Update as the feature progresses. | ||
## π Notes | ||
Include any additional notes, open questions, or considerations here. This section can be updated as the feature development evolves.`, | ||
}, | ||
bug: { | ||
title: 'π Bug Fix: [Bug Title] ', | ||
description: `## π¨ Overview | ||
Briefly describe the issue. | ||
## π Occurrence | ||
Specify the part(s) of the app affected. | ||
## π΅οΈ Steps to Reproduce | ||
1. First step | ||
2. Second step | ||
- **Frequency:** Always? Sometimes? | ||
## π― Expected vs. Actual | ||
- **Expected:** What should happen? | ||
- **Actual:** What actually happens? | ||
## πΈ Attachments | ||
- **Screenshots/Videos:** [Link or attach] | ||
- **Logs:** [Link or attach] | ||
## π Suggested Fix (If any) | ||
- **Your thoughts:** Brief idea on fixing it (optional). | ||
## π Useful Links | ||
- [Related_Docs](#) | ||
- [Similar_Issues](#)`, | ||
}, | ||
daily: { | ||
title: 'π Daily Stand-up Update', | ||
description: `## β Yesterday's Achievements | ||
- Completed task 1 | ||
- Reviewed PR from colleague | ||
## π― Today's Goals | ||
- Start working on feature X | ||
- Fix bug reported by QA | ||
## β Blockers | ||
- Awaiting design assets for feature Y | ||
- Need clarification on API endpoint | ||
## π Links | ||
- [Yesterday's_PR](#) | ||
- [Bug_Report](#)`, | ||
}, | ||
code_review: { | ||
title: 'π Code Review: [Feature/Bugfix Name]', | ||
description: `## π Functionality | ||
- [ ] Does the code accomplish the taskβs objective? | ||
## π Best Practices | ||
- [ ] Is the code clean and following best practices? | ||
## π Performance | ||
- [ ] Any potential performance impacts? | ||
## π§ͺ Testing | ||
- [ ] Is the task adequately tested?`, | ||
}, | ||
generic: { | ||
title: 'π Task Title', | ||
description: `## π Overview | ||
A brief description of what this task entails and its purpose. | ||
## π― Objective | ||
Clearly state what success looks like for this task. | ||
## β± Estimated Time | ||
Rough estimate to complete. | ||
## π Steps to Completion | ||
List the key steps in order, if applicable. | ||
## π Resources | ||
- [Documentation](#) | ||
- [Design_Mockups](#) | ||
- [Relevant_Tickets](#)`, | ||
}, | ||
} |
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