Skip to content

Commit 4258ec4

Browse files
committed
Fixed critical errors
1 parent 3e8f4b7 commit 4258ec4

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ __pycache__/
33
*.py[cod]
44
*$py.class
55

6+
/.ruff_cache/
7+
/mcp/
68

79
# C extensions
810
*.so

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
hooks:
2828
- id: black
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.15.0
30+
rev: v0.15.1
3131
hooks:
3232
- id: ruff
3333
types_or: [ python, pyi, jupyter ]

compose.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ services:
1818
restart: always
1919
env_file:
2020
- .env
21+
2122
environment:
23+
- "PYTHONUNBUFFERED=1"
2224
- "HOST=0.0.0.0"
2325
- "PORT=8015"
2426
- "TRANSPORT=streamable-http"
@@ -48,7 +50,9 @@ services:
4850
max-size: "10m"
4951
max-file: "3"
5052
restart: always
53+
5154
environment:
55+
- "PYTHONUNBUFFERED=1"
5256
- "HOST=0.0.0.0"
5357
- "PORT=9015"
5458
- "MCP_URL=http://documentdb-mcp:8015/mcp"
@@ -71,7 +75,9 @@ services:
7175
image: ghcr.io/microsoft/documentdb/documentdb-local:latest
7276
container_name: documentdb
7377
hostname: documentdb
78+
7479
environment:
80+
- "PYTHONUNBUFFERED=1"
7581
- USERNAME=${DOCUMENTDB_USERNAME:-administrator}
7682
- PASSWORD=${DOCUMENTDB_PASSWORD:-documentdbadmin}
7783
extra_hosts:

0 commit comments

Comments
 (0)