A django project to add title and alt-text to images and post them to the Fediverse
idescriptor | ||
imagebot | ||
.gitignore | ||
imagebot.cfg | ||
poetry.lock | ||
pyproject.toml | ||
README.md |
RatBot
alembic init alembic
In alembic.ini, configure the database URL:
sqlalchemy.url = sqlite:///./test.db
albemic/env.py
from models import Base
target_metadata = Base.metadata
Make migrations
alembic revision --autogenerate -m "Create model XYZ"
Migrate
alembic upgrade head