Neutral wording in import docs; portable tool output paths
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:
@@ -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():
|
||||
|
||||
@@ -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():
|
||||
|
||||
@@ -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():
|
||||
|
||||
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user