Client: - Commit: batch `p4 reopen` so huge changelists (63k+) no longer blow the Windows command-line limit; live "N / total" progress + spinner during commit. - Submit dialog: white arrow, "N of total" + % bar, running file log, Cancel button (aborts pre-commit; changelist stays pending). - Disk scan: streaming reconcile with a live "found N files" counter + Cancel. - Thumbnails: only decode browser-renderable image formats; glyph fallback (+ onError) instead of a broken-image icon for bmp/tga/dds/etc. Landing + waitlist: - waitlist-server: Express + SQLite email collector (dedup) with a secure admin panel (scrypt auth, rate-limited login, signed cookies) and CSV export. - landing form now POSTs signups to the waitlist API. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
# Copy to .env and fill in. NEVER commit .env.
|
|
|
|
# Admin login
|
|
ADMIN_USER=admin
|
|
# Generate with: npm run set-password
|
|
ADMIN_PASS_HASH=
|
|
|
|
# Session signing key (>=24 chars). Generate with: npm run gen-secret
|
|
SESSION_SECRET=
|
|
|
|
# Server
|
|
PORT=8787
|
|
NODE_ENV=development
|
|
# Set to 1 (or the hop count) when running behind nginx/Caddy so client IPs are correct
|
|
TRUST_PROXY=0
|
|
|
|
# Path to the landing page folder (default: ../landing)
|
|
# LANDING_DIR=../landing
|