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

https://github.com/nudin/wgapp

tiny experimental shared flat todo list
https://github.com/nudin/wgapp

Last synced: about 1 month ago
JSON representation

tiny experimental shared flat todo list

Awesome Lists containing this project

README

        

Selfhosted todo webapp for a shared flat
========================================

# Run for development

Optionally create a venv. Then:

$ pip install -r requirements.txt
$ uvicorn main:app --reload

# DB Migrations

When changing the DB format first create the migration script:

$ alembic revision --autogenerate -m "add some column to todos"

Then run the migration:

$ alembic upgrade head