-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 820 Bytes
/
.env.example
File metadata and controls
24 lines (19 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Server Configuration
# The address and port the server will listen on
AGENT_REGISTRY_SERVER_ADDRESS=:8080
# Database Configuration
# PostgreSQL connection string
AGENT_REGISTRY_DATABASE_URL=postgres://localhost:5432/agentregistry?sslmode=disable
# Application Version
# Set automatically during build, can be overridden for development
AGENT_REGISTRY_VERSION=dev
# JWT Configuration
# Private key for signing JWT tokens (required for authentication)
# Generate with: openssl rand -hex 32
AGENT_REGISTRY_JWT_PRIVATE_KEY="0000000000000000000000000000000000000000000000000000000000000000"
# Registry Validation
# Enable validation of registry package references
AGENT_REGISTRY_ENABLE_REGISTRY_VALIDATION=false
# Agent Gateway Configuration
# Port for the agent gateway service
AGENT_REGISTRY_AGENT_GATEWAY_PORT=8081