feat: add ability to create folders and files and persist files to sharepoint

This commit is contained in:
Stevan Freeborn
2026-07-31 13:46:10 -05:00
parent 97d31630fc
commit ea69464606
72 changed files with 5068 additions and 300 deletions
+2 -3
View File
@@ -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"]
}
],
+4 -1
View File
@@ -1,3 +1,6 @@
{
"FSharp.suggestGitignore": false
"FSharp.suggestGitignore": false,
"cSpell.words": [
"useparagon"
]
}
+22
View File
@@ -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",