man_db is a reusable Django management command for PostgreSQL lifecycle, backup, and restore tasks. It is intended to be dropped into Django projects that use Postgres.
- Management commands (two entry points:
man_dbandmandb) to perform common Postgres lifecycle tasks:create— create the configured PostgreSQL databasedrop— terminate connections and drop the database (destructive)reset— delete local app migration files and drop the database (destructive)ping— check that PostgreSQL is reachablebackup— create apg_dumpcustom-format archiverestore— restore apg_restorearchive (destructive)
- Python >= 3.13
- Django 5.2 and later
psycopg[binary]andstructlog(declared inpyproject.toml)pg_dumpandpg_restorebinaries available onPATH(or provided via env vars)
See pyproject.toml for package metadata and declared dependencies.
Current release: 0.1.3.
- Supported and tested in CI: Python 3.13
- Local development target: Python 3.13 (see
.python-version)
For Django projects that consume a published release, install from PyPI:
uv add django-postgres-man-db
# or
pip install django-postgres-man-dbFor local development from this repository, use an editable install:
python -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev]"Then add man_db to your Django INSTALLED_APPS.
# settings.py
INSTALLED_APPS = [
# ...
"man_db",
]Ensure the DATABASES[...] entry you intend to manage uses the Postgres backend (django.db.backends.postgresql). The management commands read connection details from settings.DATABASES.
CI runs on pushes and pull requests. It validates the codebase, unit tests, and the PostgreSQL integration matrix.
Release tags use the following flow:
vX.Y.Z-rcNpublishes to TestPyPIvX.Y.Zpublishes to PyPI
PG_DUMP_PATH— optional absolute path to thepg_dumpexecutable. If unset, the command will look forpg_dumponPATH, but only from trusted executable directories.PG_RESTORE_PATH— optional absolute path to thepg_restoreexecutable. If unset, the command will look forpg_restoreonPATH, but only from trusted executable directories.PGPASSFILE— when your DB password is set inDATABASES[...], the package writes a temporary.pgpassfile and pointspg_dump/pg_restoreat it instead of exportingPGPASSWORD.SERVICE_NAME/ENVIRONMENT— optional values used to bind contextvars forstructlog(defaults:man_db/local).
MAN_DB_TRUSTED_EXECUTABLE_DIRS— iterable of trusted directories forpg_dumpandpg_restorePATH fallback. Defaults to common system binary locations such as/usr/bin,/usr/local/bin, and/usr/lib/postgresql.MAN_DB_RESET_APP_ALLOWLIST— iterable of app labels allowed forresetmigration deletion when--appsis not passed.
The package exposes two management command names that are equivalent:
python manage.py man_db <action> [options]
python manage.py mandb <action> [options]Common examples:
# create the database
python manage.py man_db createThe management commands read database connection information from your Django project's settings.DATABASES. The important field for create, backup, and restore actions is the NAME value under the selected database alias.
Example settings.py (using environment variables is recommended for secrets):
import os
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": os.environ.get("DB_NAME", "my_database_name"),
"USER": os.environ.get("DB_USER", "app_user"),
"PASSWORD": os.environ.get("DB_PASSWORD", "secret"),
"HOST": os.environ.get("DB_HOST", "db.example"),
"PORT": int(os.environ.get("DB_PORT", 5432)),
},
"analytics": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "analytics_db",
"USER": "analytics_user",
"PASSWORD": "secret",
"HOST": "db.example",
"PORT": 5432,
},
}How the commands select the database:
- Use the
--databaseoption to select a Django database alias (default:default). The command reads theNAMEfrom that alias. - Example:
python manage.py man_db create --database analyticswill attempt to create the database named byDATABASES["analytics"]["NAME"].
Important notes:
- The
createaction requires a non-emptyNAME. IfDATABASES[alias]["NAME"]is empty, the command raises aCommandErrorand refuses to proceed. - For
restore, you may use--create-dbto tellpg_restoreto create the database from the archive; when--create-dbis used the command allows an emptyNAMEbecause the archive can provide the database name. - Keep credentials out of source by using
os.environ.get(...)or a secrets manager in yoursettings.py.
More examples:
# check connectivity for a named DB alias
python manage.py man_db ping --database reporting
# create a backup (output dir, optional prefix)
python manage.py man_db backup --output-dir ./backups --prefix nightly
# restore from backup (destructive)
python manage.py man_db restore --backup ./backups/app_20260516_20260516_010203.dump --i-understand
# reset scoped app migrations and drop DB (destructive, must pass --yes)
python manage.py man_db reset --yes --apps my_app another_app--yes— required to confirm destructive actions (drop,reset).--apps— app labels whose migrations may be deleted duringreset.--database— Django database alias (default:default).--output-dir— directory to write backups to (default:<BASE_DIR>/backups).--prefix— optional filename prefix for backups (must be a single filename component).--compression— compression level forpg_dumpcustom format (0–9; default: 6).--include-owner— include original object owners and privileges in dumps/restores.--backup— path to the.dumparchive to restore.--create-db— when restoring, create the DB from the archive (-Ctopg_restore).--jobs— number of parallel jobs forpg_restore(default: 2, maximum: local CPU count).--i-understand— required to acknowledge destructive restore operations.
- Backup files are created with a timestamped filename. The implementation ensures generated backup paths cannot escape the requested
--output-dir. - Backup and restore executable paths must be absolute executable files when provided through
PG_DUMP_PATHorPG_RESTORE_PATH. - PATH fallback for
pg_dumpandpg_restoreis restricted to trusted executable directories. - Restore is destructive by default; the command refuses to run unless
--i-understandis provided. restorevalidates--jobsand rejects values outside1..os.cpu_count().resetdeletes migration files only for explicitly scoped app labels from--appsorMAN_DB_RESET_APP_ALLOWLIST, and then drops the configured database.
Logging is implemented with structlog. Events are emitted with a log_name (Application, System, Audit) and an event_code (see src/man_db/event_codes.py). The package binds SERVICE_NAME and ENVIRONMENT context variables if present.
If you want to see or persist these structured logs, configure structlog/the stdlib logger in your project as you would normally.
The repository includes unit tests that use Django's test framework. To run tests locally:
python -m pip install -e ".[dev]"
python -m pytest -qpytest is configured in pyproject.toml with DJANGO_SETTINGS_MODULE = "tests.settings".
Integration tests are available separately and require a reachable PostgreSQL instance plus client binaries:
PG_DUMP_PATH=/usr/lib/postgresql/17/bin/pg_dump \
PG_RESTORE_PATH=/usr/lib/postgresql/17/bin/pg_restore \
DB_HOST=127.0.0.1 DB_PORT=5432 DB_USER=test_user DB_PASSWORD=test_password \
python -m pytest -q -m integrationTo test the complete supported PostgreSQL matrix with matching client tools, install Docker with Compose and run:
bash scripts/test-postgres-matrix.shThe script tests PostgreSQL 14, 15, 16, 17, and 18 sequentially. To run only selected versions, pass them as arguments:
bash scripts/test-postgres-matrix.sh 17 18- Fork and open a PR with a clear description of the change.
- Keep changes focused and include tests for new behavior.
- Install dev dependencies and run the test suite before submitting:
python -m pip install -e ".[dev]" && python -m pytest.
See CHANGELOG.md for a history of notable changes.
This project is licensed under the MIT License (see pyproject.toml).
Letlaka