Development Guide
Project Architecture Overview
Our project exists as an organization on GitHub, primarily to organize related repositories. We are not currently a formal organizational entity, and we warmly welcome new contributors to join us.
Core Repositories
Repository | Description | Main Maintainers |
---|---|---|
UMaxing-VTuber-Web | Project frontend, including web interface and Electron application | umaxing |
Version Management and Development Plan
Version Numbering Convention
Project version numbers follow Semantic Versioning:
- Major version (e.g., v0.5.2 → v1.0.0): Significant changes that users cannot directly upgrade
- Minor version (e.g., v1.0.0 → v1.1.0): New feature releases
- Patch version (e.g., v1.0.0 → v1.0.1): Bug fixes
Branch Information
Branch | Description | Target Audience |
---|---|---|
dev | Latest development progress | Developers only (may be unstable) |
main | Preview version | Early adopters |
v1-stable | Stable version | All regular users |
- Version number must be updated when merging to the
main
branch - The
v1-stable
branch is used for releases, and user update scripts will synchronize with the latest changes in this branch - Other branches are mostly feature branches or historical legacy
Version Release Process
- New features are developed in the
dev
branch - After features stabilize, they are merged into the
main
branch with an increased version number (e.g.,v1.0.0-alpha.1
→v1.0.0-alpha.2
) - After accumulating enough features, stable versions are released to
v1-stable
, with release notes, and published.
Version numbers are recorded in pyproject.toml
and displayed in the command line when starting the backend. Note that this is different from the conf_version
in the configuration file, which is only used to record configuration file structure changes.
Development Planning
The project has a Roadmap, but after the v1.0.0
update, we haven't strictly followed it. Currently, we mainly rely on GitHub Issues and the Issue Tracker to track development tasks.
How to Participate in Development
Before You Start
Before implementing your ideas, we recommend:
- Check if there is a related Issue
- If not, create a new issue to discuss your idea
- Start action after receiving feedback
Of course, if you want to develop directly and submit a PR, I won't stop you... 👀
Finding Tasks
If you want to participate but don't have specific ideas:
- Check the Feature Requests & Bugs & Top issues Tracker
- Look for tasks labeled with
good first issue
- these are easier and suitable for new contributors - Look for tasks labeled with
help wanted
- these are areas where we especially need help
Development Process
- Fork the relevant repository
- Switch to the
dev
branch for development (the project changes rapidly) - Implement features or fix issues
- Submit a PR to the
dev
branch of the original repository
If you encounter problems, you can always:
- Ask questions in the relevant issue
- Submit a PR draft to seek help
- Discuss in GitHub discussions
- Contact us through the following ways:
- QQ group, QQ channel, Discord group
- Bilibili private messages or other methods
Code Standards and Notes
Code Style
- Backend uses
ruff
as the linter. Please runuv run ruff format
to format your code before submission - Error messages and comments should be in English (although our users are primarily Chinese speakers, we still have users and developers who speak other languages)
Configuration Files
- Configuration file templates are located in the
config_templates
directoryconf.default.yaml
(English)conf.ZH.default.yaml
(Chinese)
- When modifying the configuration structure, both template files must be updated simultaneously
- Configuration files are validated using Pydantic. Please add corresponding data classes in
src/open_llm_vtuber/config_manager
Frontend Development
- Frontend code is in a separate UMaxing-VTuber-Web repository
- After building via GitHub Action, it links to the frontend directory of the main repository as a Git Submodule
Frontend-Backend Collaborative Development
If you need to modify both frontend and backend code:
- Please refer to Frontend User Guide/Installation and Deployment to get the frontend source code
- Before frontend changes are merged to the frontend
main
branch, the backend'sfrontend
submodule will not update - The development process is:
- Frontend changes are first merged to the frontend
dev
→main
branch - Wait for the frontend GitHub Action build to complete (generating the
build
branch) - Update the backend's
frontend
submodule reference - Merge backend changes to the corresponding branch
- Frontend changes are first merged to the frontend
Documentation Updates
Remember to update the relevant documentation after implementing features. This is very important for new users and developers!
Join the Community
If you're in our QQ group, you can get the Contributor
title after making contributions. Remember to tell me your GitHub ID so I can recognize you~
In fact, most of our project's main contributors are in the QQ group. Welcome to join and communicate together!