From bffd69ea131cf202c34ced13f01c6b51951a3247 Mon Sep 17 00:00:00 2001 From: Chris Latimer Date: Sat, 22 Nov 2025 17:13:58 -0700 Subject: [PATCH] Fix docker issues and dependencies --- docker/start.sh | 6 +++--- memora/pyproject.toml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/start.sh b/docker/start.sh index 247121ed..3983dff6 100755 --- a/docker/start.sh +++ b/docker/start.sh @@ -15,7 +15,7 @@ if [ ! -f ../.env ]; then cp ../.env.example ../.env echo "" echo "⚠️ Please edit .env and set your API keys:" - echo " - MEMORY_LLM_API_KEY" + echo " - MEMORA_API_LLM_API_KEY" echo "" echo "Then run this script again." exit 1 @@ -37,14 +37,14 @@ echo " ✅ PostgreSQL is ready" # Wait for API echo " Waiting for API..." -until curl -f http://localhost:8080/ > /dev/null 2>&1; do +until curl -f http://localhost:8080/api/v1/agents > /dev/null 2>&1; do sleep 2 done echo " ✅ API is ready" # Wait for Control Plane echo " Waiting for Control Plane..." -until curl -f http://localhost:3000/ > /dev/null 2>&1; do +until curl -f http://localhost:3000 > /dev/null 2>&1; do sleep 2 done echo " ✅ Control Plane is ready" diff --git a/memora/pyproject.toml b/memora/pyproject.toml index 94508215..2f8a3866 100644 --- a/memora/pyproject.toml +++ b/memora/pyproject.toml @@ -28,6 +28,7 @@ dependencies = [ "tiktoken>=0.12.0", "httpx>=0.27.0", "fastmcp>=2.0.0", + "python-dateutil>=2.8.0", ] [project.optional-dependencies]