From ad78ced520ff113d0e2b5b451eb65d13322f292e Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sat, 3 May 2025 10:39:04 +0300 Subject: Add demo app README --- demo/.gitignore | 1 + demo/README.md | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 demo/.gitignore create mode 100644 demo/README.md diff --git a/demo/.gitignore b/demo/.gitignore new file mode 100644 index 0000000..17186c7 --- /dev/null +++ b/demo/.gitignore @@ -0,0 +1 @@ +db_data diff --git a/demo/README.md b/demo/README.md new file mode 100644 index 0000000..e1b805c --- /dev/null +++ b/demo/README.md @@ -0,0 +1,12 @@ +# Demo chat app + +This is a demo chat app built using AutereDB, Python and Flask. + +## Installation + +Get a Python 3 environment running on your machine (pref. with virtualenv). Then: + +```bash +pip install -r requirements.txt +DB_DIR=${PWD}/db_data BASE_URL=localhost:8000 python -m flask --app app --debug run -p 8000 +``` -- cgit v1.3