mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-06 22:32:39 +02:00
feat: initialize agent and claude skill libraries with comprehensive knowledge bases, workflow templates, and implementation artifacts.
This commit is contained in:
parent
956d8c6322
commit
b35b4337bb
2028 changed files with 565614 additions and 0 deletions
26
.claude/launch.json
Normal file
26
.claude/launch.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"version": "0.0.1",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "SurfSense Frontend",
|
||||
"runtimeExecutable": "bun",
|
||||
"runtimeArgs": ["dev"],
|
||||
"cwd": "surfsense_web",
|
||||
"port": 3000
|
||||
},
|
||||
{
|
||||
"name": "SurfSense Backend",
|
||||
"runtimeExecutable": ".venv/bin/uvicorn",
|
||||
"runtimeArgs": ["app.app:app", "--host", "0.0.0.0", "--port", "8000", "--reload"],
|
||||
"cwd": "surfsense_backend",
|
||||
"port": 8000
|
||||
},
|
||||
{
|
||||
"name": "SurfSense Full Stack (Docker Dev)",
|
||||
"runtimeExecutable": "docker",
|
||||
"runtimeArgs": ["compose", "-f", "docker/docker-compose.dev.yml", "up", "--build"],
|
||||
"cwd": ".",
|
||||
"port": 3000
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue