Thank you for considering contributing to RomM muOS app! This document outlines some guidelines to help you get started with your contributions.
If you're looking to implement a large feature or make significant changes to the project, it's best to open an issue first AND join the Discord to discuss your ideas with the maintainers.
Please note that this project adheres to the Contributor Covenant code of conduct. By participating in this project, you are expected to uphold this code.
If you would like to contribute to the project's documentation, open a pull request against the docs repo. We welcome any contributions that help improve the documentation (new pages, updates, or corrections).
We use uv to manage python dependencies, install it with:
curl -LsSf https://astral.sh/uv/install.sh | shAnd activate it:
uv venv
source .venv/bin/activateThen install python and the required dependencies:
uv python install
uv sync --all-extras --devTo build the app, you'll need to install just, then run:
just buildJust can also push the app to your device, but you need to set up an .env file with your device's IP and SSH credentials. Create a file called .env in the root of the project and add the following:
DEVICE_IP_ADDRESS=
PRIVATE_KEY_PATH=
SSH_PASSWORD=Then run just, which will clean, build and push the app to your device.
- Make sure your code follows the project's coding standards.
- Test your changes locally before opening a pull request.
- Update the documentation if necessary.
- Ensure all existing tests pass, and add new tests for new functionality.
- Use clear and descriptive titles and descriptions for your pull requests.
Follow the existing code style used throughout the project. If working with VSCode or a similar editor, consider installing these extensions:
If you encounter any bugs or have suggestions for improvements, please create an issue on GitHub. Provide as much detail as possible, including steps to reproduce the issue if applicable.
By contributing to RomM muOS app, you agree that your contributions will be licensed under the project's LICENSE.
Thank you for contributing to RomM muOS app! Your help is greatly appreciated.