[object Object]

← back to Slack Idea Board

ideas: make public — no auth (allow anyone in)

6bf6b15cef2680b79921a56efcc73babedcc992a · 2026-07-23 08:34:50 -0700 · Steve

Files touched

Diff

commit 6bf6b15cef2680b79921a56efcc73babedcc992a
Author: Steve <steve@designerwallcoverings.com>
Date:   Thu Jul 23 08:34:50 2026 -0700

    ideas: make public — no auth (allow anyone in)
---
 server.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server.js b/server.js
index 3ab84f2..4f6e890 100644
--- a/server.js
+++ b/server.js
@@ -20,7 +20,7 @@ const OLLAMA = process.env.OLLAMA_URL || 'http://localhost:11434';
 const MODEL = process.env.OLLAMA_MODEL || 'hermes3:8b';
 // Basic auth — internal Slack-feed board, gated when public at ideas.agentabrams.com.
 // Override with BASIC_AUTH="user:pass"; set BASIC_AUTH="" to disable (localhost-only use).
-const BASIC_AUTH = process.env.BASIC_AUTH === undefined ? 'admin:DW2024!' : process.env.BASIC_AUTH;
+const BASIC_AUTH = process.env.BASIC_AUTH === undefined ? '' : process.env.BASIC_AUTH; // '' = public, anyone allowed in (Steve 2026-07-23)
 function authed(req) {
   if (!BASIC_AUTH) return true; // auth disabled
   const h = req.headers['authorization'] || '';

← c752b58 auth: accept second admin user dbrown  ·  back to Slack Idea Board  ·  Pin autonomous Claude CLI invocation to Opus (--model opus) 189d8c3 →