-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 919 Bytes
/
.env.example
File metadata and controls
27 lines (22 loc) · 919 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
25
26
27
# SINT Protocol — Environment Configuration
#
# Copy to .env and fill in your values.
# Railway auto-injects DATABASE_URL and REDIS_URL when using their services.
# ── Storage Backend ──
SINT_STORE=memory # "memory" or "postgres"
SINT_CACHE=memory # "memory" or "redis"
# ── Database (required when SINT_STORE=postgres) ──
# DATABASE_URL=postgresql://sint:sint@localhost:5432/sint
# ── Redis (required when SINT_CACHE=redis) ──
# REDIS_URL=redis://localhost:6379
# ── Gateway Server ──
SINT_PORT=3100
# SINT_API_KEY=your-admin-api-key-here
# SINT_REQUIRE_SIGNATURES=false
SINT_RATE_LIMIT=100
# ── SINT MCP (optional) ──
# SINT_MCP_TRANSPORT=stdio # "stdio" or "sse"
# SINT_MCP_PORT=3200
# SINT_MCP_POLICY=cautious # "permissive", "cautious", "strict"
# SINT_MCP_APPROVAL_TIMEOUT=120000
# SINT_AGENT_PRIVATE_KEY= # Auto-generated if unset