{"id":50055904,"url":"https://github.com/trisdoan/rodoo","last_synced_at":"2026-05-21T13:11:14.850Z","repository":{"id":311740560,"uuid":"1043791895","full_name":"trisdoan/rodoo","owner":"trisdoan","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-20T10:48:09.000Z","size":85,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-20T12:21:40.149Z","etag":null,"topics":["odoo","python","typer-cli"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trisdoan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-24T16:21:20.000Z","updated_at":"2025-11-20T10:48:13.000Z","dependencies_parsed_at":"2025-08-26T10:34:11.297Z","dependency_job_id":"c3f28416-78cd-41f7-845a-ec6711f1561e","html_url":"https://github.com/trisdoan/rodoo","commit_stats":null,"previous_names":["trisdoan/rodoo"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/trisdoan/rodoo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trisdoan%2Frodoo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trisdoan%2Frodoo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trisdoan%2Frodoo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trisdoan%2Frodoo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trisdoan","download_url":"https://codeload.github.com/trisdoan/rodoo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trisdoan%2Frodoo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33301699,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"ssl_error","status_checked_at":"2026-05-21T12:22:11.673Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["odoo","python","typer-cli"],"created_at":"2026-05-21T13:11:13.886Z","updated_at":"2026-05-21T13:11:14.841Z","avatar_url":"https://github.com/trisdoan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rodoo - Run Odoo\n\nA CLI tool to streamline Odoo development environments.\n\n\u003e **Warning**\n\u003e This tool is designed purely for **Odoo development** purposes. It is not recommended for use in production environments.\n\n## Installation\n\nBefore installing `rodoo`, you need to have `uv` installed on your system.\n\nYou can install `rodoo` using uv-tool:\n\n```bash\nuv tool install git+https://github.com/trisdoan/rodoo.git\n```\n\n## Features\n\n-   **Automated Odoo Development Setup**: Clones the correct Odoo version from the official repository. Automatically creates and manages Python virtual environments for your projects using `uv`.\n-   **Flexible Configuration**: Configure your Odoo instances via CLI arguments or through `rodoo.toml` configuration files.\n-   **Profile Management**: Create and manage multiple configuration profiles for different projects.\n\n## How It Works\n\n`rodoo` is designed to be non-intrusive to your project's directory. It manages all the heavy components in a central location (`~/.config/rodoo` on Linux).\n\n-   **Source Code**: Odoo source code (both Community and Enterprise) is cloned into version-specific subdirectories within the `rodoo` config folder. This means you only have one copy of each Odoo version on your system, which is then shared across projects.\n-   **Virtual Environments**: Python virtual environments are managed by `uv` and are stored in a `venvs` subdirectory, keeping your projects clean from bulky `venv` folders.\n-   **Profiles**: The core concept is the \"profile\". A profile is a collection of settings for a specific Odoo instance (e.g., modules, version, custom paths) defined in a `rodoo.toml` file. You can have multiple profiles for different projects. This file can be checked into your version control, making it easy to share project configurations with your team and ensure consistent environments across different machines.\n\n## Quick Start\n\nThere are a few ways to use `rodoo`.\n\n### 1. Direct CLI Arguments\n\nYou can start an Odoo instance by providing the module and version directly on the command line. `rodoo` will handle the rest.\n\n```bash\nrodoo start --module web --version 17.0 --python-version 3.11\n```\n\n### 2. Using a Configuration File\n\nFor more complex projects, you can create a `rodoo.toml` file in your project directory.\n\nHere is an example `rodoo.toml`:\n\n```toml\n[profile.my_project]\nmodules = [\"web\", \"crm\", \"sale\"]\nversion = 17.0\npython_version = \"3.11\"\nenterprise = true\npaths = [\"./custom_addons\"]\n```\n\nThen, you can start the instance using the profile name:\n\n```bash\nrodoo start --profile my_project\n```\n\nIf you only have one profile, you can just run `rodoo start` and it will be selected automatically.\n\n### 3. Interactive Profile Creation\n\nIf you run `rodoo start` in a directory with no configuration, it will prompt you to create a new profile interactively.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrisdoan%2Frodoo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrisdoan%2Frodoo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrisdoan%2Frodoo/lists"}