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>
30 lines
874 B
JSON
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
|
|
}
|
|
]
|
|
}
|