Initial Commit
This commit is contained in:
53
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
53
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
---
|
||||
name: Bug Report
|
||||
about: Create a report to help us improve
|
||||
title: '[BUG] '
|
||||
labels: bug
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
## 🐛 Bug Description
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
## 📋 Steps to Reproduce
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '...'
|
||||
3. Scroll down to '...'
|
||||
4. See error
|
||||
|
||||
## ✅ Expected Behavior
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
## ❌ Actual Behavior
|
||||
A clear and concise description of what actually happened.
|
||||
|
||||
## 📸 Screenshots
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
## 🖥️ Environment
|
||||
- **OS:** [e.g., Ubuntu 22.04, Windows 11, macOS 13]
|
||||
- **PHP Version:** [e.g., 8.1.12]
|
||||
- **Database:** [e.g., MySQL 8.0, MariaDB 10.6]
|
||||
- **Web Server:** [e.g., Apache 2.4, Nginx 1.21]
|
||||
- **Browser:** [e.g., Chrome 110, Firefox 109] (if UI issue)
|
||||
|
||||
## 📝 Additional Context
|
||||
Add any other context about the problem here.
|
||||
|
||||
## 🔍 Error Logs
|
||||
If applicable, paste any error messages from:
|
||||
- PHP error log
|
||||
- Application logs (`logs/cron.log`)
|
||||
- Browser console (for UI issues)
|
||||
|
||||
```
|
||||
Paste error logs here
|
||||
```
|
||||
|
||||
## ✔️ Checklist
|
||||
- [ ] I have checked the [documentation](https://github.com/Hosteroid/domain-monitor/wiki)
|
||||
- [ ] I have searched for similar issues
|
||||
- [ ] I have provided all required information
|
||||
- [ ] I can reproduce this bug consistently
|
||||
|
||||
42
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
42
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
name: Feature Request
|
||||
about: Suggest an idea for this project
|
||||
title: '[FEATURE] '
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
## 💡 Feature Description
|
||||
A clear and concise description of the feature you'd like to see.
|
||||
|
||||
## 🎯 Problem Statement
|
||||
Is your feature request related to a problem? Please describe.
|
||||
Example: I'm always frustrated when [...]
|
||||
|
||||
## 🚀 Proposed Solution
|
||||
Describe the solution you'd like to see implemented.
|
||||
|
||||
## 🔄 Alternatives Considered
|
||||
Describe any alternative solutions or features you've considered.
|
||||
|
||||
## 📊 Use Case
|
||||
Describe how you would use this feature. Include:
|
||||
- Who would benefit from this feature?
|
||||
- How often would it be used?
|
||||
- What problem does it solve?
|
||||
|
||||
## 🎨 Mockups/Examples
|
||||
If applicable, add mockups, screenshots, or examples from other applications.
|
||||
|
||||
## 🛠️ Implementation Ideas
|
||||
If you have technical ideas about how this could be implemented, share them here.
|
||||
|
||||
## 📝 Additional Context
|
||||
Add any other context or information about the feature request here.
|
||||
|
||||
## ✔️ Checklist
|
||||
- [ ] I have searched for similar feature requests
|
||||
- [ ] This feature aligns with the project's goals
|
||||
- [ ] I can help test this feature when implemented
|
||||
- [ ] I would be willing to contribute to implementation (optional)
|
||||
|
||||
89
.github/pull_request_template.md
vendored
Normal file
89
.github/pull_request_template.md
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
## 📝 Description
|
||||
<!-- Provide a clear and concise description of your changes -->
|
||||
|
||||
|
||||
|
||||
## 🎯 Type of Change
|
||||
<!-- Mark the relevant option with an 'x' -->
|
||||
|
||||
- [ ] 🐛 Bug fix (non-breaking change that fixes an issue)
|
||||
- [ ] ✨ New feature (non-breaking change that adds functionality)
|
||||
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to change)
|
||||
- [ ] 📝 Documentation update
|
||||
- [ ] 🎨 UI/UX improvement
|
||||
- [ ] ⚡ Performance improvement
|
||||
- [ ] ♻️ Code refactoring
|
||||
|
||||
## 🔗 Related Issues
|
||||
<!-- Link related issues using #issue_number -->
|
||||
|
||||
Fixes #
|
||||
Closes #
|
||||
Related to #
|
||||
|
||||
## 🧪 Testing
|
||||
<!-- Describe the tests you ran and how to reproduce them -->
|
||||
|
||||
- [ ] Tested on PHP 8.1
|
||||
- [ ] Tested on PHP 8.2
|
||||
- [ ] Tested on PHP 8.3
|
||||
- [ ] Tested on PHP 8.4
|
||||
- [ ] Tested with MySQL
|
||||
- [ ] Tested with MariaDB
|
||||
- [ ] Tested on different browsers (if UI change)
|
||||
- [ ] Tested on mobile devices (if UI change)
|
||||
|
||||
### Test Steps
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
## 📸 Screenshots
|
||||
<!-- If applicable, add screenshots to demonstrate the changes -->
|
||||
|
||||
### Before
|
||||
<!-- Screenshot before changes -->
|
||||
|
||||
### After
|
||||
<!-- Screenshot after changes -->
|
||||
|
||||
## ✅ Checklist
|
||||
<!-- Mark completed items with an 'x' -->
|
||||
|
||||
- [ ] My code follows the project's coding standards (PSR-12)
|
||||
- [ ] I have performed a self-review of my code
|
||||
- [ ] I have commented my code, particularly in hard-to-understand areas
|
||||
- [ ] I have made corresponding changes to the documentation
|
||||
- [ ] My changes generate no new warnings or errors
|
||||
- [ ] I have added tests that prove my fix is effective or that my feature works
|
||||
- [ ] New and existing unit tests pass locally with my changes
|
||||
- [ ] Any dependent changes have been merged and published
|
||||
|
||||
## 📚 Documentation Changes
|
||||
<!-- List any documentation that needs to be updated -->
|
||||
|
||||
- [ ] README.md updated
|
||||
- [ ] CHANGELOG.md updated
|
||||
- [ ] Wiki updated (if applicable)
|
||||
- [ ] Code comments added
|
||||
- [ ] API documentation updated (if applicable)
|
||||
|
||||
## 🔐 Security Considerations
|
||||
<!-- Describe any security implications of your changes -->
|
||||
|
||||
|
||||
|
||||
## ⚠️ Breaking Changes
|
||||
<!-- If this is a breaking change, describe the impact and migration path -->
|
||||
|
||||
|
||||
|
||||
## 📝 Additional Notes
|
||||
<!-- Add any other context or information about the PR here -->
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
<!-- Thank you for contributing to Domain Monitor! 🚀 -->
|
||||
|
||||
Reference in New Issue
Block a user