feat: add ability to create folders and files and persist files to sharepoint
This commit is contained in:
Vendored
+2
-3
@@ -13,7 +13,7 @@
|
||||
"pipeCwd": "${workspaceFolder}",
|
||||
"quoteArgs": false
|
||||
},
|
||||
"preLaunchTask": "docker-compose up (backend only)",
|
||||
"preLaunchTask": "docker-compose up (debug backend only)",
|
||||
"sourceFileMap": {
|
||||
"/src/src/ParagonPlayground.Api": "${workspaceFolder}/src/ParagonPlayground/backend/src/ParagonPlayground.Api",
|
||||
"/src/src/ParagonPlayground.Domain": "${workspaceFolder}/src/ParagonPlayground/backend/src/ParagonPlayground.Domain",
|
||||
@@ -39,8 +39,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Attach to All",
|
||||
"type": "compound",
|
||||
"preLaunchTask": "docker-compose up",
|
||||
"preLaunchTask": "docker-compose up (debug)",
|
||||
"configurations": ["Attach to Backend", "Attach to Frontend"]
|
||||
}
|
||||
],
|
||||
|
||||
Vendored
+4
-1
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"FSharp.suggestGitignore": false
|
||||
"FSharp.suggestGitignore": false,
|
||||
"cSpell.words": [
|
||||
"useparagon"
|
||||
]
|
||||
}
|
||||
Vendored
+22
@@ -45,6 +45,28 @@
|
||||
"group": "none",
|
||||
"detail": "Restart all services"
|
||||
},
|
||||
{
|
||||
"label": "docker-compose up (debug)",
|
||||
"type": "shell",
|
||||
"command": "docker compose -f docker-compose.debug.yml up -d --build",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/src/ParagonPlayground"
|
||||
},
|
||||
"problemMatcher": [],
|
||||
"group": "none",
|
||||
"detail": "Build and start all services using the debug stage (compiled binary, debugger-ready)"
|
||||
},
|
||||
{
|
||||
"label": "docker-compose up (debug backend only)",
|
||||
"type": "shell",
|
||||
"command": "docker compose -f docker-compose.debug.yml up -d --build mongodb backend nginx",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}/src/ParagonPlayground"
|
||||
},
|
||||
"problemMatcher": [],
|
||||
"group": "none",
|
||||
"detail": "Backend only in debug mode (no frontend container)"
|
||||
},
|
||||
{
|
||||
"label": "build backend",
|
||||
"type": "shell",
|
||||
|
||||
Reference in New Issue
Block a user