3
0
Fork 0

feat: add basic views for Alembic Migrations, Dashboard

can see all "known" migration revisions (per alembic config), and
migrate the DB arbitrarily via alembic upgrade/downgrade
This commit is contained in:
Lance Edgar 2025-12-22 17:35:07 -06:00
parent 6791abe96f
commit 3e7aa1fa0b
15 changed files with 1151 additions and 8 deletions

View file

@ -0,0 +1,6 @@
``wuttaweb.views.alembic``
==========================
.. automodule:: wuttaweb.views.alembic
:members:

View file

@ -28,6 +28,7 @@ templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
intersphinx_mapping = {
"alembic": ("https://alembic.sqlalchemy.org/en/latest/", None),
"colander": ("https://docs.pylonsproject.org/projects/colander/en/latest/", None),
"deform": ("https://docs.pylonsproject.org/projects/deform/en/latest/", None),
"fanstatic": ("https://www.fanstatic.org/en/latest/", None),

View file

@ -58,6 +58,7 @@ the narrative docs are pretty scant. That will eventually change.
api/wuttaweb.subscribers
api/wuttaweb.util
api/wuttaweb.views
api/wuttaweb.views.alembic
api/wuttaweb.views.auth
api/wuttaweb.views.base
api/wuttaweb.views.batch