chore: gitignore maintainer deploy scripts, scrub personal domain from dev.mjs

This commit is contained in:
ginnoir
2026-06-02 19:30:27 -05:00
parent 7938425850
commit 4ec1f34150
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -49,11 +49,13 @@ tests/.auth/
# Backups # Backups
deploy/backups/data/ deploy/backups/data/
# Production configs — maintainer-specific, never commit # Production configs and deploy scripts — maintainer-specific, never commit
deploy/.prod/ deploy/.prod/
deploy/compose.yaml deploy/compose.yaml
deploy/Caddyfile deploy/Caddyfile
deploy/Caddyfile.dev.snippet deploy/Caddyfile.dev.snippet
scripts/apply-compose.ps1
scripts/sync-prod.ps1
# Design handoff bundle (reference only, not committed) # Design handoff bundle (reference only, not committed)
.design-tmp/ .design-tmp/
+1 -1
View File
@@ -85,7 +85,7 @@ export async function main() {
console.log("\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"); console.log("\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━");
console.log(` Local → http://localhost:3000`); console.log(` Local → http://localhost:3000`);
console.log(` LAN → http://${lanIp}:3000 (phone on same WiFi)`); console.log(` LAN → http://${lanIp}:3000 (phone on same WiFi)`);
console.log(` HTTPS → https://dev.ginnoir.com (push/PWA — needs Caddy snippet)`); console.log(` HTTPS → https://dev.<your-domain> (push/PWA — needs Caddyfile.dev.snippet)`);
console.log("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n"); console.log("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n");
// 6. Spawn Next.js dev server bound to all interfaces. // 6. Spawn Next.js dev server bound to all interfaces.