Skip to content

Commit 786dadb

Browse files
committed
fix missing config
1 parent e9ec603 commit 786dadb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

typescript-sdk/apps/dojo/scripts/run-dojo-everything.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ const ALL_SERVICES = {
6565
cwd: path.join(integrationsRoot, 'agno/examples'),
6666
env: { PORT: 8002 },
6767
}],
68-
'crew-ai': {
68+
'crew-ai': [{
6969
command: 'poetry run dev',
7070
name: 'CrewAI',
7171
cwd: path.join(integrationsRoot, 'crewai/python'),
7272
env: { PORT: 8003 },
73-
},
73+
}],
7474
'langgraph-fastapi': [{
7575
command: 'poetry run dev',
7676
name: 'LG FastAPI',
@@ -80,36 +80,36 @@ const ALL_SERVICES = {
8080
POETRY_VIRTUALENVS_IN_PROJECT: 'false',
8181
},
8282
}],
83-
'langgraph-platform-python': {
83+
'langgraph-platform-python': [{
8484
command: 'pnpx @langchain/langgraph-cli@latest dev --no-browser --host 127.0.0.1 --port 8005',
8585
name: 'LG Platform Py',
8686
cwd: path.join(integrationsRoot, 'langgraph/examples/python'),
8787
env: { PORT: 8005 },
88-
},
88+
}],
8989
'langgraph-platform-typescript': [{
9090
command: 'pnpx @langchain/langgraph-cli@latest dev --no-browser --host 127.0.0.1 --port 8006',
9191
name: 'LG Platform TS',
9292
cwd: path.join(integrationsRoot, 'langgraph/examples/typescript/'),
9393
env: { PORT: 8006 },
9494
}],
95-
'llama-index': {
95+
'llama-index': [{
9696
command: 'uv run dev',
9797
name: 'Llama Index',
9898
cwd: path.join(integrationsRoot, 'llamaindex/server-py'),
9999
env: { PORT: 8007 },
100-
},
100+
}],
101101
'mastra': [{
102102
command: 'npm run dev',
103103
name: 'Mastra',
104104
cwd: path.join(integrationsRoot, 'mastra/example'),
105105
env: { PORT: 8008 },
106106
}],
107-
'pydantic-ai': {
107+
'pydantic-ai': [{
108108
command: 'uv run dev',
109109
name: 'Pydantic AI',
110110
cwd: path.join(integrationsRoot, 'pydantic-ai/examples'),
111111
env: { PORT: 8009 },
112-
},
112+
}],
113113
'adk-middleware': [{
114114
command: 'uv run dev',
115115
name: 'ADK Middleware',

0 commit comments

Comments
 (0)