Skip to content

Commit 9fe4730

Browse files
fix: Commit env.template
1 parent bbca3e9 commit 9fe4730

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

agents/.env.template

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Cognito Authentication Configuration
2+
# Copy this file to .env and fill in your actual values
3+
4+
# Cognito App Client ID
5+
COGNITO_CLIENT_ID=your_cognito_client_id_here
6+
7+
# Cognito App Client Secret
8+
COGNITO_CLIENT_SECRET=your_cognito_client_secret_here
9+
10+
# Cognito User Pool ID
11+
COGNITO_USER_POOL_ID=your_cognito_user_pool_id_here
12+
13+
# AWS Region for Cognito
14+
AWS_REGION=us-east-1
15+
16+
# Cognito Domain (without https:// prefix, just the domain name)
17+
# Example: mcp-gateway or your-custom-domain
18+
# COGNITO_DOMAIN=
19+
20+
# Secret key for session cookie signing (must match registry SECRET_KEY), string of hex characters
21+
# To generate: python -c 'import secrets; print(secrets.token_hex(32))'
22+
SECRET_KEY=your-secret-key-here
23+
24+
# Either http://localhost:8000 or the HTTPS URL of your deployed MCP Gateway
25+
REGISTRY_URL=your_registry_url_here

0 commit comments

Comments
 (0)