summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md23
-rw-r--r--backend/requirements.txt1
2 files changed, 23 insertions, 1 deletions
diff --git a/README.md b/README.md
index 79929f9..fb44e25 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,22 @@
-# flexibleContextPlatform \ No newline at end of file
+# ContextFlow
+
+## Quick Start
+
+### Backend
+
+```bash
+cd backend
+uv run --with-requirements requirements.txt uvicorn app.main:app --host 0.0.0.0 --port 8000
+```
+
+### Frontend
+
+```bash
+cd frontend
+npm install # first time only
+npx vite --port 5174
+```
+
+### Nginx
+
+The production domain `contextflow.blackhao.com` reverse-proxies to `127.0.0.1:8000`. \ No newline at end of file
diff --git a/backend/requirements.txt b/backend/requirements.txt
index 7260f95..f03fcd2 100644
--- a/backend/requirements.txt
+++ b/backend/requirements.txt
@@ -3,6 +3,7 @@ uvicorn
pydantic[email]
openai
google-generativeai
+google-genai
anthropic
python-dotenv
httpx