A Rust application to showcase badge awards in the AT Protocol ecosystem.
at main 632 B view raw
1# SQLite Development Environment Configuration 2# This file contains environment variables for local development with SQLite 3 4# Database connection URL for SQLite 5DATABASE_URL=sqlite://showcase_dev.db 6 7# External hostname for the site 8EXTERNAL_BASE=http://localhost:8080 9 10# Semicolon-separated list of trusted badge issuer DIDs 11BADGE_ISSUERS=did:plc:test1;did:plc:test2 12 13# HTTP server port 14HTTP_PORT=8080 15 16# Badge image storage directory 17BADGE_IMAGE_STORAGE=./badges 18 19# PLC server hostname 20PLC_HOSTNAME=plc.directory 21 22# HTTP client timeout 23HTTP_CLIENT_TIMEOUT=10s 24 25# Logging configuration for development 26RUST_LOG=showcase=info,debug