Refresh workspace configuration for local app development#1518
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Refreshes the shared VS Code multi-repo workspace configuration to match the current local development layout, and applies minor documentation formatting updates required by repo hooks.
Changes:
- Reorders/renames workspace folders and updates Python analysis
extraPaths(including NeuroMem). - Adds VS Code launch + task entries to run/debug “my-twin” locally.
- Applies small markdown reformatting/line-wrapping updates in docs.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| SAGE.code-workspace | Updates multi-repo folder layout, Python path helpers, and adds my-twin debug/task entries. |
| docs/dependency-audit-gate.md | Minor formatting/line-wrap cleanup in the dependency audit gate doc. |
| DEVELOPER.md | Line wrap adjustment to satisfy formatting checks. |
Comment on lines
15
to
18
| { | ||
| "name": "sage-faculty-twin [app]", | ||
| "path": "../sage-faculty-twin" | ||
| "name": "personal-homepage [profile]", | ||
| "path": "../shuhaozhangtony.github.io" | ||
| }, |
Comment on lines
+145
to
+148
| "name": "my-twin: Uvicorn (local neuromem)", | ||
| "type": "debugpy", | ||
| "request": "launch", | ||
| "module": "uvicorn", |
Comment on lines
+253
to
+262
| { | ||
| "label": "Run my-twin (local neuromem)", | ||
| "type": "shell", | ||
| "command": "PYTHONPATH=${workspaceFolder:my-twin [app]}/src:${workspaceFolder:SAGE [meta]}/src:${workspaceFolder:sageVDB [vdb]}:${workspaceFolder:neuromem [memory]} uvicorn sage_faculty_twin.api:app --host 127.0.0.1 --port 8010 --reload", | ||
| "group": "build", | ||
| "problemMatcher": [], | ||
| "options": { | ||
| "cwd": "${workspaceFolder:my-twin [app]}" | ||
| } | ||
| }, |
Comment on lines
+263
to
274
| { | ||
| "label": "Sync Homepage Knowledge (offline)", | ||
| "type": "shell", | ||
| "command": "PYTHONPATH=${workspaceFolder:my-twin [app]}/src:${workspaceFolder:SAGE [meta]}/src:${workspaceFolder:neuromem [memory]} python -m sage_faculty_twin.knowledge_import --homepage-dir ${workspaceFolder:personal-homepage [profile]} --knowledge-dir ${workspaceFolder:my-twin [app]}/data/knowledge_base --knowledge-backend neuromem", | ||
| "group": "build", | ||
| "problemMatcher": [], | ||
| "options": { | ||
| "cwd": "${workspaceFolder:my-twin [app]}" | ||
| } | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR refreshes the shared VS Code workspace configuration and related docs.
Summary:
Why: