Highly ambitious ATProtocol AppView service and sdks
1# Database configuration
2DATABASE_URL=postgresql://slices:slices@localhost:5432/slices
3
4# Server configuration
5PORT=3000
6
7# Process type: all (everything), app (HTTP + Jetstream), or worker (sync jobs only)
8# PROCESS_TYPE=all
9
10# Authentication service base URL
11AUTH_BASE_URL=http://localhost:8081
12
13# AT Protocol relay endpoint for backfill
14RELAY_ENDPOINT=https://relay1.us-west.bsky.network
15
16# AT Protocol Jetstream hostname
17JETSTREAM_HOSTNAME=jetstream2.us-west.bsky.network
18
19# System slice URI
20SYSTEM_SLICE_URI=at://did:plc:bcgltzqazw5tb6k2g3ttenbj/network.slices.slice/3lymhd4jhrd2z
21
22# Default maximum repositories per sync operation
23DEFAULT_MAX_SYNC_REPOS=5000
24
25# Logging level
26RUST_LOG=debug
27
28# Redis configuration (optional - if not set, falls back to in-memory cache)
29REDIS_URL=redis://localhost:6379
30REDIS_TTL_SECONDS=3600