Verified live: godstrument.pro is served from the botchat VPS (humanjing@100.71.119.27) via Cloudflare Tunnel, NOT dealgod — corrected the canon note and recorded the rsync+restart deploy recipe. Also track the godstrument-verify / -test launch configs. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
42 lines
1.6 KiB
JSON
42 lines
1.6 KiB
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
|
|
},
|
|
{
|
|
"name": "godstrument-verify",
|
|
"runtimeExecutable": "sh",
|
|
"runtimeArgs": ["-c", "python3 -c \"import json; c=json.load(open('config.json')); c['ws_port']=8791; c['http_port']=8891; c['osc_in_port']=9010; json.dump(c, open('/tmp/gs_verify_config.json','w'))\" && .venv/bin/python run.py --no-browser --profile minimal --config /tmp/gs_verify_config.json"],
|
|
"port": 8891
|
|
},
|
|
{
|
|
"name": "godstrument-test",
|
|
"runtimeExecutable": "sh",
|
|
"runtimeArgs": ["-c", "python3 -c \"import json; c=json.load(open('config.json')); c['ws_port']=8790; c['http_port']=8890; json.dump(c, open('/tmp/gs_test_config.json','w'))\" && .venv/bin/python run.py --no-browser --profile minimal --config /tmp/gs_test_config.json"],
|
|
"port": 8890
|
|
}
|
|
]
|
|
}
|