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
- Host: GitHub
- URL: https://github.com/nudin/wgapp
- Owner: Nudin
- License: gpl-3.0
- Created: 2024-10-06T19:31:57.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-19T20:56:55.000Z (6 months ago)
- Last Synced: 2024-10-20T13:34:19.868Z (6 months ago)
- Language: Python
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
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