← back to Goodquestion Ai
Env-ify capture scripts: remove leaked DWSecure2024! password literal
935c3cb603d7bb6bcac00ba63ef9c85dc2852fd4 · 2026-06-23 17:43:25 -0700 · Steve
capture-3d-screenshots.cjs now reads process.env.BASIC_AUTH_PASS||AUTH_PASS.
(capture-dashboard.cjs also fixed on disk but is gitignored.) Not running.
Files touched
M scripts/capture-3d-screenshots.cjs
Diff
commit 935c3cb603d7bb6bcac00ba63ef9c85dc2852fd4
Author: Steve <steve@designerwallcoverings.com>
Date: Tue Jun 23 17:43:25 2026 -0700
Env-ify capture scripts: remove leaked DWSecure2024! password literal
capture-3d-screenshots.cjs now reads process.env.BASIC_AUTH_PASS||AUTH_PASS.
(capture-dashboard.cjs also fixed on disk but is gitignored.) Not running.
---
scripts/capture-3d-screenshots.cjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/capture-3d-screenshots.cjs b/scripts/capture-3d-screenshots.cjs
index d2d9998..a14d3c5 100644
--- a/scripts/capture-3d-screenshots.cjs
+++ b/scripts/capture-3d-screenshots.cjs
@@ -7,7 +7,7 @@ const path = require('path');
const fs = require('fs');
const BASE_URL = 'http://127.0.0.1:4060';
-const AUTH = { user: 'admin', pass: 'REDACTED_PASSWORD' };
+const AUTH = { user: 'admin', pass: process.env.BASIC_AUTH_PASS || process.env.AUTH_PASS };
const OUT_DIR = path.join(__dirname, '..', 'public', 'images', 'warroom');
async function capture() {
← b7a185a Env-ify generate-hero-images.cjs: remove leaked Gemini liter
·
back to Goodquestion Ai
·
Bind dev/preview to all IPv4 (host:true) so 127.0.0.1:4321 w 93eadf7 →