Skip to content
Sébastien Andreatta edited this page Apr 27, 2026 · 2 revisions

odev info

info demo

Fetch and display detailed information about an Odoo database.

This command provides a comprehensive overview of a database's status and configuration, including:

  • Hosting Details: Version, Edition (Community vs. Enterprise), and the platform it's hosted on (Local, SaaS, or Odoo.sh).
  • Database Metrics: Backend URL, RPC port, Database UUID, expiration dates, and storage sizes (SQL database vs. Filestore).
  • Git State: Current branches and commit revisions for the Odoo core, Enterprise, Design Themes, and any linked custom repositories.
  • Runtime Information (Local only): Whether the database is currently running, its Process ID (PID), the specific Python Virtual Environment (venv) and Git Worktree it uses, and the calculated addons-path.

Usage

odev info [-v {CRITICAL,ERROR,WARNING,INFO,DEBUG,DEBUG_SQL,NOTSET}] [-h] [-f] [-p {local,saas,paas}] [-b BRANCH] database

Aliases

i

Arguments

Positional Arguments:

Argument Description
database The database to target.

Optional Arguments:

Argument Description
-v, --log-level Set logging verbosity for the execution of odev.
-h, --help Show help for the current command.
-f, --force Bypass confirmation prompts and assume a default value to all, use with caution!
-p, --platform Force searching for the database on the specified platform, useful when different databases have the same name on different hosting (usually one local database being a copy of a remote one). One of local, saas or paas.
-b, --branch The branch to target, only used with PaaS (Odoo SH) databases to force using a specific branch after project detection.

Examples

Show help

odev info --help

Show detailed information about a database

odev info demo_19

Clone this wiki locally