Add account creation endpoint and dynamic REST client environment config

This commit is contained in:
GitHub Copilot
2025-05-06 09:13:03 +00:00
parent a8ec2734c8
commit bac13b30c9
3 changed files with 112 additions and 7 deletions

17
.vscode/settings.json vendored
View File

@@ -3,5 +3,20 @@
"terminal.integrated.enablePersistentSessions": true,
"terminal.integrated.persistentSessionReviveProcess": "onExitAndWindowClose",
"terminal.integrated.enableMultiLinePasteWarning": "auto",
"terminal.integrated.splitCwd": "workspaceRoot"
"terminal.integrated.splitCwd": "workspaceRoot",
"rest-client.environmentVariables": {
"$shared": {
"version": "v1"
},
"development": {
"host": "localhost",
"port": "4321",
"baseUrl": "http://localhost:4321/api"
},
"production": {
"host": "finance-app-production.example.com",
"port": "443",
"baseUrl": "https://finance-app-production.example.com/api"
}
}
}