mirror of
https://github.com/cyclotruc/gitingest.git
synced 2026-04-28 09:59:32 +00:00
Some changes to how we handle symlinks. We no longer resolve them, which should reduce the complexity by a nice bit. We also now show the target name in the output. I also added a launch.json file for debugging because it took me a while to figure out how to get the debugger to work. Yeah, that's it. Please test before merging because I'm a bit of a dingus sometimes
12 lines
322 B
JSON
12 lines
322 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Python Debugger: Module",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"args": ["server.main:app", "--host", "0.0.0.0", "--port", "8000"],
|
|
"cwd": "${workspaceFolder}/src"
|
|
}
|
|
]
|
|
}
|