Add first info to landing page

This commit is contained in:
2025-10-23 12:35:52 +02:00
parent f6e69b1521
commit 81929cca21
11 changed files with 186 additions and 57 deletions

View File

@@ -1,3 +1,8 @@
lint:
uv run isort test src
uv run black test src
uv run black test src
reset_db:
rm -f aps_db.db
uv run python -c "from allmende_payment_system.database import create_tables; create_tables()"
for file in db_fixtures/*.sql; do sqlite3 aps_db.db < "$file"; done