An open API service indexing awesome lists of open source software.

https://github.com/ghaztools/blogupdater

A service that connects to my obsidian plugin to publish and release blog posts
https://github.com/ghaztools/blogupdater

alembic hypercorn mypy obsidian pydantic python ruff sanic sqlalchemy

Last synced: 2 months ago
JSON representation

A service that connects to my obsidian plugin to publish and release blog posts

Awesome Lists containing this project

README

          

# BlogUpdater (im not sure if this will be a service yet or a kafka consumer or just a script)

This project uses Alembic for database schema versioning, allowing
for easy management of database migrations.

## Managing Database Versioning with Alembic

Alembic is a lightweight database migration tool for use with SQLAlchemy.
It provides command line tools for creating and managing scriptable database revisions.

### Updating Database Versioning

To create a new migration script after modifying your SQLAlchemy models, run:

```bash
alembic revision --autogenerate -m "DESCRIPTION_HERE"
```

Then, when youcan apply the update using

```bash
alembic upgrade head
```