# Local development configuration for `devenv up` # # Required fields (data_dir, public_url) are injected via EZPDS_* environment # variables set in devenv.nix. Override them per-machine in devenv.local.nix: # # { ... }: { # env.EZPDS_PUBLIC_URL = "https://my-tunnel.ngrok.io"; # } # # # these would be silly values for a production deployment # don't use them in production admin_token = "test-token-please-ignore" # TODO: fill in your preferred bind address and port for local development bind_address = "127.0.0.1" port = 8080 database_url = ":memory:" # Required: at least one handle domain your PDS serves (e.g. ["your.domain"]) available_user_domains = ["localhost"] invite_code_required = true # Optional: set to your server's DID once generated in Wave 3 # server_did = "did:plc:..." # Optional: legal links # [links] # privacy_policy = "https://example.com/privacy" # terms_of_service = "https://example.com/tos" # Optional: admin contact # [contact] # email = "admin@example.com"