Neutral wording in import docs; portable tool output paths
Some checks failed
CI / backend (push) Successful in 1m41s
CI / naming (push) Successful in 1s
CI / frontend (push) Successful in 8s
CI / migrations-mysql (push) Failing after 8s

Import-surface docs and docstrings describe the automation as a
migration script; status-doc references in CHANGELOG/ADR-009/ROADMAP
point at repo files. Screenshot/verify tools write to /tmp/shopdb-shots
(created on import) instead of a machine-specific directory.
This commit is contained in:
cproudlock
2026-07-13 16:23:24 -04:00
parent 6010f01de1
commit 7d7862f4b5
13 changed files with 23 additions and 18 deletions

View File

@@ -20,7 +20,8 @@ API = "http://localhost:5001/api"
# creds from env so no real login lands in source; fall back to dev defaults
USERNAME = os.environ.get("SHOT_USERNAME", "270015376")
PASSWORD = os.environ.get("SHOT_PASSWORD", "changeme")
OUTDIR = "/tmp/claude-1000/-home-camp-projects/effc3424-ed5e-4b09-b83e-d141bee23c42/scratchpad"
OUTDIR = "/tmp/shopdb-shots"
os.makedirs(OUTDIR, exist_ok=True)
def login():

View File

@@ -15,7 +15,8 @@ API = "http://localhost:5001/api"
# creds from env so no real login lands in source; fall back to dev defaults
USERNAME = os.environ.get("SHOT_USERNAME", "270015376")
PASSWORD = os.environ.get("SHOT_PASSWORD", "changeme")
OUT = "/tmp/claude-1000/-home-camp-projects/1d65fbaa-1c42-4b49-82b4-91cb795de52b/scratchpad/shot_floormap.png"
OUT = "/tmp/shopdb-shots"
os.makedirs(OUT, exist_ok=True)
def login():

View File

@@ -1,4 +1,5 @@
"""Drive the dev UI: open the map, click Export PDF, save the download + a shot."""
import os
import json
import urllib.request
from playwright.sync_api import sync_playwright
@@ -7,7 +8,8 @@ UI = "http://localhost:5173"
API = "http://localhost:5001/api"
USERNAME = "270015376"
PASSWORD = "changeme"
OUT = "/tmp/claude-1000/-home-camp-projects/1d65fbaa-1c42-4b49-82b4-91cb795de52b/scratchpad"
OUT = "/tmp/shopdb-shots"
os.makedirs(OUT, exist_ok=True)
def login():

View File

@@ -1,12 +1,14 @@
"""Select Network Devices on the map, screenshot the (now populated) subtype
dropdown, then export a filtered PDF to confirm subtypes flow through."""
import os
import json
import urllib.request
from playwright.sync_api import sync_playwright
UI = "http://localhost:5173"
API = "http://localhost:5001/api"
OUT = "/tmp/claude-1000/-home-camp-projects/1d65fbaa-1c42-4b49-82b4-91cb795de52b/scratchpad"
OUT = "/tmp/shopdb-shots"
os.makedirs(OUT, exist_ok=True)
def login():