-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
69 lines (55 loc) · 2.62 KB
/
env.example
File metadata and controls
69 lines (55 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Quilt MCP Server Environment Configuration
# Copy this to .env and update with your values
# AWS Configuration
AWS_PROFILE=default
AWS_DEFAULT_REGION=us-east-1
AWS_ACCOUNT_ID=123456789
# Quilt Configuration
QUILT_CATALOG_URL=https://open.quiltdata.io
# ============================================================================
# TEST CONFIGURATION (only for running test suite)
# ============================================================================
# This should ONLY be set in test environments
# Production code never uses this variable
# LLM clients should provide explicit bucket parameters based on conversation context
# ============================================================================
QUILT_TEST_BUCKET=s3://your-test-bucket
# Test package configuration (can reference any package in any bucket)
QUILT_TEST_PACKAGE=raw/test
QUILT_TEST_ENTRY=README.md
# ============================================================================
# DEPRECATED VARIABLES (removed in v0.10.0)
# ============================================================================
# QUILT_DEFAULT_BUCKET - REMOVED
# Rationale: MCP server should not manage default bucket state
# Migration: LLM clients provide explicit bucket parameters based on conversation context
# For tests: Use QUILT_TEST_BUCKET and test fixtures instead
# ============================================================================
# Optional log level
LOG_LEVEL=INFO
# ============================================================================
# JWT AUTHENTICATION (optional)
# ============================================================================
# Enable JWT-only mode (default false)
# MCP_REQUIRE_JWT=false
#
# HTTP Service Timeout (seconds) - default: 60
# QUILT_SERVICE_TIMEOUT=60
# Optional: Override FastMCP transport mode (set to STDIO for desktop clients)
FASTMCP_TRANSPORT=stdio
# ngrok Configuration for remote tunneling (optional)
NGROK_DOMAIN=my-free-domain.ngrok-free.app
# Real JWT fallback for remote HTTP requests without Authorization headers (dev/testing hack only)
# QUILT_FALLBACK_JWT=eyJhbGciOi...
# Docker Configuration
# ECR registry URL (optional override for Docker push operations)
# Default: {account_id}.dkr.ecr.{region}.amazonaws.com
ECR_REGISTRY=123456789.dkr.ecr.us-east-1.amazonaws.com
# Python packaging (uv)
# Production publishing is done using OIDC via CI (no secrets necessary)
# Required for locally publishing to TestPyPI
UV_PUBLISH_TOKEN=pypi-TOKEN
# Optional: Override publish endpoint (defaults to TestPyPI)
# PYPI_PUBLISH_URL=https://test.pypi.org/legacy/
# Optional: Override dist output directory (defaults to dist/)
DIST_DIR=dist