From 69155f49988004a75527923eceaf690a8565cee0 Mon Sep 17 00:00:00 2001 From: oonyeje Date: Tue, 7 Jul 2026 04:09:37 +0000 Subject: [PATCH] Add .env.example with documented config --- .env.example | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..f2a78b3 --- /dev/null +++ b/.env.example @@ -0,0 +1,20 @@ +# Server port (default: 3012) +PORT=3012 + +# Base URL for the Appwrite API. +# Override only if your Appwrite instance lives somewhere other than the default. +APPWRITE_BASE_URL=https://appwrite.bsidesolutions.net/v1 + +# JSON map: slot name → { project, apiKey } +# Set this in your hosting platform's environment variables, NOT in this file. +# +# Example: +# PROJECT_CREDENTIALS={"square":{"project":"staging-crown-x-ms-monet","key":""}} +PROJECT_CREDENTIALS= + +# Short-path route map. Format: "/path=>{apiKeySlot,functionId}" +# Multiple routes separated by ';' +# +# Example: +# ROUTE_MAP=/square=>{"apiKeySlot":"square","functionId":"verify_square_webhook"} +ROUTE_MAP= \ No newline at end of file