added transaction log, UX scaffolding

This commit is contained in:
evilchili
2024-02-08 01:14:35 -08:00
parent 2dcaa3fac6
commit da6255a86a
15 changed files with 460 additions and 73 deletions
+2 -1
View File
@@ -75,7 +75,6 @@ def setup(context: typer.Context):
bootstrap()
@app.command()
def serve(
context: typer.Context,
@@ -98,8 +97,10 @@ def serve(
# delay loading the app until we have configured our environment
from ttfrog.webserver import application
from ttfrog.db.bootstrap import bootstrap
print("Starting TableTop Frog server...")
bootstrap()
application.start(host=host, port=port, debug=debug)