Files
Nexus/.claude/launch.json
T

18 lines
362 B
JSON
Raw Normal View History

{
"version": "0.0.1",
"configurations": [
{
"name": "Nexus Preview",
"runtimeExecutable": "python",
"runtimeArgs": ["-m", "http.server", "8765", "--directory", "web/app"],
"port": 8765
},
{
"name": "Frontend Dev",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 3000
}
]
}