Merge remote changes and apply Docker configuration

This commit is contained in:
2026-03-18 14:08:58 -05:00
3 changed files with 8 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ ruff check src/ tests/
ruff format src/ tests/
```
### Docker
```bash
@@ -82,9 +83,12 @@ TrytonMCP/
│ ├── test_customer.py
│ └── test_server.py
├── test_rpc.py # Standalone RPC test script
<<<<<<< HEAD
├── Dockerfile # Docker container definition
├── docker-compose.yaml # Docker Compose orchestration
├── .dockerignore # Docker build exclusions
=======
>>>>>>> 1a9efc93da759d8fc3fce357e9a1d66486ab6995
├── pyproject.toml # Project dependencies
└── .env.example # Environment variables template
```

View File

@@ -77,6 +77,8 @@ docker compose down
El servidor MCP estará disponible en `http://localhost:3001`.
=======
## Testing
```bash
@@ -88,4 +90,4 @@ python -m pytest tests/test_server.py -v
# Con coverage
python -m pytest tests/ --cov=src --cov-report=html
```
```

View File

@@ -29,4 +29,4 @@ dev = [
]
[tool.taskipy.tasks]
start = "fastmcp run ./src/tryton_mcp/server.py --transport http --port 3001 --reload"
start = "fastmcp run ./src/tryton_mcp/server.py --transport http --port 3001 --reload"