From 7b366cae5af2cee538c6372485ba148e822e20f4 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sat, 25 Apr 2026 14:45:48 +0800 Subject: [PATCH] chore: add RP_ID, RP_NAME, and RESEND_API_KEY to env example --- .env.example | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index d0531cc..ad89e37 100644 --- a/.env.example +++ b/.env.example @@ -53,4 +53,22 @@ DISCORD_CLIENT_SECRET="" S3_ACCESS_KEY_ID="" S3_SECRET_ACCESS_KEY="" S3_BUCKET_NAME="" -S3_PUBLIC_URL="" \ No newline at end of file +S3_PUBLIC_URL="" + +# ----------------------------------------------------------------------------- +# PASSKEY (WebAuthn) +# ----------------------------------------------------------------------------- +# RP ID: Your domain without protocol (e.g., "localhost" or "deckyvault.xyz") +RP_ID="localhost" + +# RP Name: Human-readable name shown in passkey prompts +RP_NAME="DeckyVault" + +# ----------------------------------------------------------------------------- +# EMAIL +# ----------------------------------------------------------------------------- +# Resend API key for sending OTP emails (optional — falls back to console logging) +RESEND_API_KEY="" + +# Email sender address +EMAIL_FROM="DeckyVault " \ No newline at end of file