docs: manual de producción completo + ajustes seed fallback

- Add production manual (docs/MANUAL_PRODUCCION.md)
- Fix seed script to work without OpenAI API key (zero-vector fallback)
- Fix alembic env to use database_url_str
- Fix pyproject.toml hatch build config
This commit is contained in:
root
2026-04-29 05:51:27 +00:00
parent 5740d94295
commit be2dbbc194
4 changed files with 454 additions and 9 deletions

View File

@@ -25,7 +25,7 @@ target_metadata = Base.metadata
# other values from the config, defined by the needs of env.py,
# can be acquired:
# my_important_option = config.get_main_option("my_important_option")
config.set_main_option("sqlalchemy.url", settings.DATABASE_URL)
config.set_main_option("sqlalchemy.url", settings.database_url_str)
def run_migrations_offline() -> None: