From 7d8a986784f71438ff07c474b41f74b3e0b37479 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 29 Jun 2026 19:29:38 +0100 Subject: [PATCH] adds sane defaults in example.env --- example.env | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/example.env b/example.env index c064b45..4cb50ab 100644 --- a/example.env +++ b/example.env @@ -3,16 +3,16 @@ CONTAINER_PREFIX= # The hostname to use for the local SMTP server -LOCAL_SMTP_HOST= +LOCAL_SMTP_HOST=smtp # The port to use for the local SMTP server -LOCAL_SMTP_PORT= +LOCAL_SMTP_PORT=2500 # The username for authenticating to the local SMTP server -LOCAL_SMTP_USER= +LOCAL_SMTP_USER=smtp # The password for authenticating to the local SMTP server -LOCAL_SMTP_PASSWORD= +LOCAL_SMTP_PASSWORD=smtp # The envelope-from used by the local SMTP server # Theoretically should be "LOCAL_SMTP_FROM_NAME ", but in @@ -47,10 +47,10 @@ CONTACT_MAILBOX_NAME= MAX_DAILY_EMAILS= # The scheme part of the URI to the website database -DB_SCHEME= +DB_SCHEME=sqlite # The path part of the URI to the website database -DB_PATH= +DB_PATH=/var/app/joeac.net-http.sqlite # The Node.JS environment for the Etherpad instance (production, development) ETHERPAD_NODE_ENV=production