From 5ea0066e5d5781e72885b84f3b9710fd84bf189e Mon Sep 17 00:00:00 2001 From: yusuftomilola Date: Mon, 11 May 2026 09:44:35 +0100 Subject: [PATCH] feat: add examples/quick_start.py stub --- examples/quick_start.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 examples/quick_start.py diff --git a/examples/quick_start.py b/examples/quick_start.py new file mode 100644 index 0000000..4a7622b --- /dev/null +++ b/examples/quick_start.py @@ -0,0 +1,8 @@ +"""Quick-start example for pesachat-core.""" + +from pesachat_core.main import app # noqa: F401 + +if __name__ == "__main__": + import uvicorn + + uvicorn.run(app, host="0.0.0.0", port=8000) \ No newline at end of file