Skip to content

Commit d6b7371

Browse files
committed
PR fixes
1 parent 7b917db commit d6b7371

File tree

3 files changed

+2
-26
lines changed

3 files changed

+2
-26
lines changed

AGENTS.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ The following permissions are granted for this repository:
453453
**GitHub Secrets Configuration:**
454454

455455
Required secrets for Docker operations:
456+
456457
- `ECR_REGISTRY` - ECR registry URL (preferred)
457458
- `AWS_ACCOUNT_ID` - AWS account ID (fallback for registry construction)
458459
- `AWS_DEFAULT_REGION` - AWS region (defaults to us-east-1)
@@ -471,9 +472,3 @@ Do what has been asked; nothing more, nothing less.
471472
NEVER create files unless they're absolutely necessary for achieving your goal.
472473
ALWAYS prefer editing an existing file to creating a new one.
473474
NEVER proactively create documentation files (*.md) or README files. Only create documentation files if explicitly requested by the User.
474-
475-
# important-instruction-reminders
476-
Do what has been asked; nothing more, nothing less.
477-
NEVER create files unless they're absolutely necessary for achieving your goal.
478-
ALWAYS prefer editing an existing file to creating a new one.
479-
NEVER proactively create documentation files (*.md) or README files. Only create documentation files if explicitly requested by the User.

make.dev

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -121,25 +121,6 @@ kill:
121121
@lsof -ti :8001 | xargs -r kill 2>/dev/null || echo "No processes on port 8001"
122122
@echo "✅ Server kill completed"
123123

124-
# Docker Targets
125-
docker-build:
126-
@echo "Building Docker image..."
127-
@docker build --file Dockerfile --tag $${DOCKER_IMAGE_TAG:-quilt-mcp:dev} .
128-
129-
docker-run:
130-
@echo "Running Docker container..."
131-
@docker run --rm \
132-
-p $${DOCKER_PORT:-8000}:8000 \
133-
-e FASTMCP_TRANSPORT=$${FASTMCP_TRANSPORT:-http} \
134-
-e FASTMCP_HOST=$${FASTMCP_HOST:-0.0.0.0} \
135-
$${DOCKER_RUN_ARGS:-} \
136-
$${DOCKER_IMAGE_TAG:-quilt-mcp:dev}
137-
138-
docker-test:
139-
@echo "Running Docker integration test..."
140-
@uv sync --group test
141-
@export PYTHONPATH="src" && uv run python -m pytest tests/integration/test_docker_container.py -v
142-
143124
# Cleanup Targets
144125
dev-clean:
145126
@echo "Cleaning Python cache..."

src/deploy/manifest.json.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"manifest_version": "0.1",
2+
"manifest_version": "0.2",
33
"name": "quilt-mcp",
44
"version": "{{ version }}",
55
"description": "Access Quilt data packages through Claude Desktop",

0 commit comments

Comments
 (0)