Events now have a subscriptions_applied flag. Using apply_subscriptions without passing an event now processes all events in the next week, which have not yet been processed
9 lines
231 B
Makefile
9 lines
231 B
Makefile
lint:
|
|
uv run isort src
|
|
uv run black src
|
|
|
|
reset_db:
|
|
rm -f database.db
|
|
touch database.db
|
|
alembic upgrade heads
|
|
bash -c 'shopt -s nullglob; for file in db_fixtures/*.sql; do sqlite3 database.db < "$file"; done'
|