Fix docker issues and dependencies

This commit is contained in:
Chris Latimer 2025-11-22 17:13:58 -07:00
parent 9b36a3a74a
commit bffd69ea13
2 changed files with 4 additions and 3 deletions

View file

@ -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"

View file

@ -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]