Skip to content

Commit bffd69e

Browse files
committed
Fix docker issues and dependencies
1 parent 9b36a3a commit bffd69e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docker/start.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if [ ! -f ../.env ]; then
1515
cp ../.env.example ../.env
1616
echo ""
1717
echo "⚠️ Please edit .env and set your API keys:"
18-
echo " - MEMORY_LLM_API_KEY"
18+
echo " - MEMORA_API_LLM_API_KEY"
1919
echo ""
2020
echo "Then run this script again."
2121
exit 1
@@ -37,14 +37,14 @@ echo " ✅ PostgreSQL is ready"
3737

3838
# Wait for API
3939
echo " Waiting for API..."
40-
until curl -f http://localhost:8080/ > /dev/null 2>&1; do
40+
until curl -f http://localhost:8080/api/v1/agents > /dev/null 2>&1; do
4141
sleep 2
4242
done
4343
echo " ✅ API is ready"
4444

4545
# Wait for Control Plane
4646
echo " Waiting for Control Plane..."
47-
until curl -f http://localhost:3000/ > /dev/null 2>&1; do
47+
until curl -f http://localhost:3000 > /dev/null 2>&1; do
4848
sleep 2
4949
done
5050
echo " ✅ Control Plane is ready"

memora/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ dependencies = [
2828
"tiktoken>=0.12.0",
2929
"httpx>=0.27.0",
3030
"fastmcp>=2.0.0",
31+
"python-dateutil>=2.8.0",
3132
]
3233

3334
[project.optional-dependencies]

0 commit comments

Comments
 (0)