env.py
python
sha256:0032d6cfa33bc3c8367436ad768e7dd0e339b4332153160247da8266cb5fa352
Merge branch 'task/version-tags-phase3-server' into dev
Human
17 days ago
| 1 | """Alembic environment configuration for Muse.""" |
| 2 | from __future__ import annotations |
| 3 | |
| 4 | import asyncio |
| 5 | from logging.config import fileConfig |
| 6 | |
| 7 | from sqlalchemy import pool |
| 8 | from sqlalchemy.engine import Connection |
| 9 | from sqlalchemy.ext.asyncio import async_engine_from_config |
| 10 | |
| 11 | from alembic import context |
| 12 | |
| 13 | # Import your models' Base |
| 14 | from musehub.db.database import Base |
| 15 | from musehub.db import muse_cli_models # noqa: F401 - Register Muse CLI commit tables |
| 16 | from musehub.config import settings |
| 17 | |
| 18 | # Alembic Config object |
| 19 | config = context.config |
| 20 | |
| 21 | # Interpret the config file for Python logging |
| 22 | if config.config_file_name is not None: |
| 23 | fileConfig(config.config_file_name) |
| 24 | |
| 25 | # Add your model's MetaData object here for 'autogenerate' support |
| 26 | target_metadata = Base.metadata |
| 27 | |
| 28 | # Override sqlalchemy.url with the one from settings (required; no default password in repo) |
| 29 | if not settings.database_url: |
| 30 | raise RuntimeError( |
| 31 | "DATABASE_URL (or DB_PASSWORD with Docker Postgres) must be set for migrations. " |
| 32 | "set in .env or export before running alembic." |
| 33 | ) |
| 34 | config.set_main_option( |
| 35 | "sqlalchemy.url", |
| 36 | settings.database_url.replace("+asyncpg", ""), |
| 37 | ) |
| 38 | |
| 39 | |
| 40 | def run_migrations_offline() -> None: |
| 41 | """Run migrations in 'offline' mode. |
| 42 | |
| 43 | This configures the context with just a URL |
| 44 | and not an Engine, though an Engine is acceptable |
| 45 | here as well. By skipping the Engine creation |
| 46 | we don't even need a DBAPI to be available. |
| 47 | |
| 48 | Calls to context.execute() here emit the given string to the |
| 49 | script output. |
| 50 | """ |
| 51 | url = config.get_main_option("sqlalchemy.url") |
| 52 | context.configure( |
| 53 | url=url, |
| 54 | target_metadata=target_metadata, |
| 55 | literal_binds=True, |
| 56 | dialect_opts={"paramstyle": "named"}, |
| 57 | compare_type=True, |
| 58 | compare_server_default=True, |
| 59 | ) |
| 60 | |
| 61 | with context.begin_transaction(): |
| 62 | context.run_migrations() |
| 63 | |
| 64 | |
| 65 | def do_run_migrations(connection: Connection) -> None: |
| 66 | """Run migrations with a connection.""" |
| 67 | context.configure( |
| 68 | connection=connection, |
| 69 | target_metadata=target_metadata, |
| 70 | compare_type=True, |
| 71 | compare_server_default=True, |
| 72 | ) |
| 73 | |
| 74 | with context.begin_transaction(): |
| 75 | context.run_migrations() |
| 76 | |
| 77 | |
| 78 | async def run_async_migrations() -> None: |
| 79 | """Run migrations in 'online' mode with async support.""" |
| 80 | configuration = config.get_section(config.config_ini_section, {}) |
| 81 | |
| 82 | # The ini option (set above) has +asyncpg stripped for the offline/sync |
| 83 | # autogenerate path. The async engine requires the full async URL, so we |
| 84 | # always override with settings.database_url here. Test isolation is |
| 85 | # handled by test fixtures that patch settings.database_url directly. |
| 86 | configuration["sqlalchemy.url"] = settings.database_url |
| 87 | |
| 88 | connectable = async_engine_from_config( |
| 89 | configuration, |
| 90 | prefix="sqlalchemy.", |
| 91 | poolclass=pool.NullPool, |
| 92 | ) |
| 93 | |
| 94 | async with connectable.connect() as connection: |
| 95 | await connection.run_sync(do_run_migrations) |
| 96 | |
| 97 | await connectable.dispose() |
| 98 | |
| 99 | |
| 100 | def run_migrations_online() -> None: |
| 101 | """Run migrations in 'online' mode.""" |
| 102 | asyncio.run(run_async_migrations()) |
| 103 | |
| 104 | |
| 105 | if context.is_offline_mode(): |
| 106 | run_migrations_offline() |
| 107 | else: |
| 108 | run_migrations_online() |
File History
10 commits
sha256:0032d6cfa33bc3c8367436ad768e7dd0e339b4332153160247da8266cb5fa352
Merge branch 'task/version-tags-phase3-server' into dev
Human
17 days ago
sha256:4669620efda9ff41c55bdefd1f7bfe1c239d468428744c84ead9957e5a003a53
merge: rescue snapshot-recovery hardening (c00aa21d) into d…
Opus 4.8
minor
⚠
30 days ago
sha256:a59da49c4611b970fc4b6ae48678ce4943261c213a07ddbd73ce9201df869b4a
fix: remove false-positive proposal_comments index drop fro…
Sonnet 4.6
patch
34 days ago
sha256:0a240d6dbff234f07d98a28a4a9a68db702f3f9ff9260196f24219bdb1c0b6f3
feat: render markdown mists as HTML with heading anchor links
Sonnet 4.6
patch
35 days ago
sha256:24a7d47486ebc4ebd1832830580e177ec6f877b48dced8c000e198cdec4ce9d6
Merge 'task/bump-version-rc12' into 'dev' — proposal: Bump …
Human
36 days ago
sha256:b9ff931d147e0114a1f17060f415b89ed551c170a91ff226c70437aa5c85f9ee
Merge 'task/bump-version-rc12' into 'dev' — proposal: Bump …
Human
36 days ago
sha256:d1122d21e73471879b460037b22c0b50fded7c423444a176f248428f75dac39c
Merge 'task/fix-issue-pagination-cursor' into 'dev' — propo…
Human
36 days ago
sha256:01e18975e73d2b3cd5b6db7929c895bef9aa6e0d4391dc5b2adfc548b41318dd
Merge 'feat/adding-debug-logs-to-staging' into 'dev' — prop…
Human
36 days ago
sha256:6b1949fc2797ca4c1936a637a4cbfec828ef56cf52398a2e74ca3c4f494e728f
fix: use wire_bytes not mpack_bytes_raw in compute_object_b…
Sonnet 4.6
patch
48 days ago
sha256:b99f2455dc346966d040133f5203297e6e3ef5803a93728a2c30568d0a0f7583
rename: delta_add → delta_upsert across wire format, models…
Sonnet 4.6
patch
50 days ago