godash/.vscode/launch.json

24 lines
892 B
JSON
Raw Normal View History

2024-03-26 10:25:19 +01:00
{
2024-09-16 06:55:39 +02:00
// 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": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"env": {
"TITLE": "DEV",
"PUBLIC_URL": "http://localhost:4000",
"WEATHER_KEY": "3722ce75e9330aaefde1cb3eb1b8b030",
"APP_VERSION": "v0.0.1-DEV",
2024-09-25 15:33:28 +02:00
"AUTH_CLIENT_ID": "home",
"AUTH_CLIENT_SECRET": "PkfS5S7BkiEeqX3Km7BGxsBrmH6MOzjqcpODTz2akxMCMFHv8TAvIfyWgTlKof85",
"AUTH_ISSUER": "https://sso.unjx.de/auth/v1",
2024-09-16 06:55:39 +02:00
}
}
]
}