initial commit

This commit is contained in:
Henry Hiles 2025-07-26 21:21:04 -04:00
commit 6490b8fef6
No known key found for this signature in database
16 changed files with 1910 additions and 0 deletions

22
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "lasuite-docs-proxy",
"program": "bin/lasuite_docs_proxy.dart",
"args": [
"--socket",
"./socket",
"--authUri",
"https://docs.federated.nexus/api/v1.0/documents/media-auth/",
"--minioUri",
"http://localhost:8080"
],
"request": "launch",
"type": "dart"
}
]
}