feat: Add Postgres storage backend, Django integration, and project hardening#5
Merged
Conversation
Apply cargo fmt, ruff format, and clippy fixes. Suppress pyo3 macro-generated useless_conversion warnings.
Merge the 0.2.3 and 0.2.4 sections into a single 0.2.3 release since the latest published version on PyPI is 0.2.2.
pratyush618
force-pushed
the
feat/postgres-backend
branch
from
March 7, 2026 11:00
aa8fb99 to
b96a188
Compare
openssl-sys fails to build on Windows CI because pq-sys pulls in OpenSSL. Gate the Postgres storage behind a `postgres` cargo feature so the default build (SQLite-only) works everywhere. Linux wheels are built with the postgres feature enabled.
pratyush618
force-pushed
the
feat/postgres-backend
branch
from
March 7, 2026 11:17
3eb44ee to
f6b2257
Compare
The 2s sleep was insufficient on Windows CI for the job to fail and reach the dead letter queue. Use a polling loop (up to 10s) instead.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Storagetrait for PostgreSQL, enabling production-grade deployments alongside the existing SQLite backendtaskito.contrib.djangoapp with admin interface, management commands (taskito_worker,taskito_dashboard,taskito_info), and Django settings integration.pre-commit-config.yamlwithcargo fmt,cargo clippy,ruff check,ruff format, andmypy