38 lines
721 B
Markdown
38 lines
721 B
Markdown
# Development Workflow
|
|
|
|
## Branches
|
|
|
|
- `main` — stable, deployable
|
|
- `feature-*` — feature branches, merge to main via PR
|
|
|
|
## Issue Format
|
|
|
|
Title: `[CATEGORY] Description`
|
|
|
|
Categories: `BACKEND`, `FRONTEND`, `DEVOPS`, `TESTING`, `DOCS`, `BUG`
|
|
|
|
## Commit Messages
|
|
|
|
```
|
|
[Category] Short description
|
|
|
|
Longer explanation if needed. Closes #XX
|
|
```
|
|
|
|
## PR Checklist
|
|
|
|
- [ ] Code follows existing style
|
|
- [ ] Tested manually
|
|
- [ ] No breaking API changes (or documented)
|
|
- [ ] Docs updated if user-facing
|
|
- [ ] Screenshots if UI changes
|
|
|
|
## Current Priorities
|
|
|
|
1. WebSocket hub (blocks Channels)
|
|
2. Channels backend + frontend
|
|
3. Plugin architecture design
|
|
4. Notes & Knowledge Base
|
|
|
|
See [ROADMAP.md](ROADMAP.md) for detail.
|