matrixoidc/.vscode/launch.json

26 lines
831 B
JSON

{
// 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": "matrix-oauth2oidc",
"program": "bin/matrixoidc.dart",
"args": [
"--homeserver",
"https://matrix.federated.nexus",
"--jwtSecretFile",
"secret",
"--issuer",
"http://localhost:8080/",
"--authorizeEndpoint",
"http://localhost:4321/login",
"--serviceDomain",
"federated.nexus"
],
"request": "launch",
"type": "dart"
}
]
}