Godstrument/.claude/launch.json
type-two e69b7e2ad6 Accounts, socio-economic feeds, and hub fixes (track deployed work)
Captures backend work already running on godstrument.pro but never committed:
- auth.py: invite-only accounts + per-user presets (SQLite, scrypt, signed
  stateless sessions), mounted by hub.py at /api/*
- hub.py: /api static+API handler, readonly public mode, full route spec in hello
- socio-economic / market / fire / debt / crypto workers + normalize/transform
- .gitignore: never commit godstrument_users.db* or auth_secret
- test_fixes.py: framework-free self-check for the review fixes

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-05 16:18:35 +10:00

30 lines
874 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "godstrument",
"runtimeExecutable": "/Users/m3ultra/Documents/godstrument/.venv/bin/python",
"runtimeArgs": ["run.py", "--no-browser", "--profile", "warp", "--city", "melbourne", "--dealgod"],
"port": 8088
},
{
"name": "godstrument-local",
"runtimeExecutable": ".venv/bin/python",
"runtimeArgs": ["run.py", "--no-browser", "--profile", "minimal"],
"port": 8088
},
{
"name": "godstrument-local-ro",
"runtimeExecutable": "sh",
"runtimeArgs": ["-c", "GODSTRUMENT_READONLY=1 .venv/bin/python run.py --no-browser --profile minimal"],
"port": 8088
},
{
"name": "viz-static",
"runtimeExecutable": "python3",
"runtimeArgs": ["-m", "http.server", "8899", "--directory", "viz"],
"port": 8899
}
]
}