From d0031e5c57d165aafd18a733a06f9369d612bc18 Mon Sep 17 00:00:00 2001 From: Hermes Date: Wed, 20 May 2026 14:28:01 -0400 Subject: [PATCH] feat: add Paperclip env example file with placeholder secrets Add env/.env.example.paperclip documenting the two required environment variables for the Paperclip agent orchestrator services: - PAPERCLIP_DB_PASSWORD -- PostgreSQL password for paperclip-db - PAPERCLIP_AUTH_SECRET -- Better Auth secret key for token signing Users copy this to .env and fill in the secrets before deploying. --- env/.env.example.paperclip | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 env/.env.example.paperclip diff --git a/env/.env.example.paperclip b/env/.env.example.paperclip new file mode 100644 index 0000000..a80936f --- /dev/null +++ b/env/.env.example.paperclip @@ -0,0 +1,26 @@ +# Paperclip Environment Variables +# Copy this file to your .env (at the compose root or docker-compose working directory) +# and fill in the secrets. +# +# cp env/.env.example.paperclip .env +# +# Then reference it from compose.yml: +# env_file: +# - path: .env +# required: true + +# --------------------------------------------------------------------------- +# Database +# --------------------------------------------------------------------------- +# PostgreSQL password for the paperclip-db service. +# Generate a strong random password: +# openssl rand -base64 32 +PAPERCLIP_DB_PASSWORD=change_me_to_a_strong_random_password + +# --------------------------------------------------------------------------- +# Authentication +# --------------------------------------------------------------------------- +# Secret key used by Better Auth for signing and verifying tokens. +# Generate a strong random secret: +# openssl rand -base64 32 +PAPERCLIP_AUTH_SECRET=change_me_to_a_strong_random_secret