-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path.env.example
More file actions
65 lines (53 loc) · 2.07 KB
/
.env.example
File metadata and controls
65 lines (53 loc) · 2.07 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
# 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
# Seed Configuration
# Path to seed data file (optional)
AGENT_REGISTRY_SEED_FROM=
# Application Version
# Set automatically during build, can be overridden for development
AGENT_REGISTRY_VERSION=dev
# GitHub OAuth Configuration
# Required for GitHub authentication
AGENT_REGISTRY_GITHUB_CLIENT_ID=
AGENT_REGISTRY_GITHUB_CLIENT_SECRET=
# JWT Configuration
# Private key for signing JWT tokens (required for authentication)
# Generate with: openssl rand -hex 32
AGENT_REGISTRY_JWT_PRIVATE_KEY="0000000000000000000000000000000000000000000000000000000000000000"
# Authentication Settings
# Enable anonymous authentication (useful for development)
AGENT_REGISTRY_ENABLE_ANONYMOUS_AUTH=false
# Registry Validation
# Enable validation of registry package references
AGENT_REGISTRY_ENABLE_REGISTRY_VALIDATION=false
# OIDC Configuration (Optional)
# Enable OpenID Connect authentication
AGENT_REGISTRY_OIDC_ENABLED=false
AGENT_REGISTRY_OIDC_ISSUER=
AGENT_REGISTRY_OIDC_CLIENT_ID=
# OIDC Claims and Permissions
# Comma-separated list of extra claims to include
AGENT_REGISTRY_OIDC_EXTRA_CLAIMS=
# Comma-separated list of permissions for action-based operations
AGENT_REGISTRY_OIDC_EDIT_PERMISSIONS=
AGENT_REGISTRY_OIDC_PUBLISH_PERMISSIONS=
AGENT_REGISTRY_OIDC_GET_PERMISSIONS=
AGENT_REGISTRY_OIDC_PUSH_PERMISSIONS=
AGENT_REGISTRY_OIDC_DELETE_PERMISSIONS=
AGENT_REGISTRY_OIDC_DEPLOY_PERMISSIONS=
# Agent Gateway Configuration
# Port for the agent gateway service
AGENT_REGISTRY_AGENT_GATEWAY_PORT=8081
# Embeddings Configuration
AGENT_REGISTRY_EMBEDDINGS_ENABLED=false
AGENT_REGISTRY_EMBEDDINGS_PROVIDER=openai
AGENT_REGISTRY_EMBEDDINGS_MODEL=text-embedding-3-small
AGENT_REGISTRY_EMBEDDINGS_DIMENSIONS=1536
AGENT_REGISTRY_EMBEDDINGS_ON_PUBLISH=false
AGENT_REGISTRY_OPENAI_API_KEY=
AGENT_REGISTRY_OPENAI_BASE_URL=https://api.openai.com/v1
AGENT_REGISTRY_OPENAI_ORG=