generated from fluffy-bunny/fluffycore-grpc-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
158 lines (153 loc) · 7.73 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
// 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": "server-localhost1.com",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server",
"env": {
"ENABLE_GRPC_SERVER_REFLECTION": "true",
"DOMAIN":"localhost1.com:9044",
"COOKIE_DOMAIN":"localhost",
"RAGE_APPLICATION_NAME": "server",
"RAGE_APPLICATION_ENVIRONMENT":"Development",
"APPLICATION_ENVIRONMENT":"Development",
"RAGE_LOG_LEVEL": "debug",
"RAGE_PRETTY_LOG":"true",
"RAGE_PORT": "30051",
"GRPC_GATEWAY_ENABLED": "true",
"RAGE_REST_PORT": "30052",
"RAGE_customString": "In Flames",
"RAGE_someSecret": "1234567890",
"RAGE_oidcConfig__baseUrl": "http://localhost1.com:9044",
"RAGE_jwtValidators__issuers": "http://localhost:50053,http://host.docker.internal:50053",
"RAGE_jwtValidators__jwksUrls": "http://localhost:50053/.well-known/jwks,http://host.docker.internal:50053/.well-known/jwks",
"RAGE_emailConfig__fromName": "The Perfect Corp Team",
"RAGE_emailConfig__fromEmail": "noreply@perfectcorp.com",
"RAGE_echo__disableSecureCookies": "true",
"RAGE_echo__port": "9044",
"RAGE_emailConfig__justLogIt": "true",
"RAGE_cookieConfig__secure": "true",
"RAGE_systemConfig__developerMode": "true",
"RAGE_GITHUB_CLIENT_ID": "bdbe2f2235eb3a02065c",
"RAGE_webAuthNConfig__enabled": "false",
},
"args": [ "serve" ]
},
{
"name": "server-localhost",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server",
"env": {
"ENABLE_GRPC_SERVER_REFLECTION": "true",
"DOMAIN":"localhost:9044",
"COOKIE_DOMAIN":"localhost",
"RAGE_APPLICATION_NAME": "RAGE Account",
"RAGE_APPLICATION_ENVIRONMENT":"Development",
"APPLICATION_ENVIRONMENT":"Development",
"RAGE_LOG_LEVEL": "debug",
"RAGE_PRETTY_LOG":"true",
"RAGE_PORT": "30051",
"GRPC_GATEWAY_ENABLED": "true",
"RAGE_REST_PORT": "30052",
"RAGE_customString": "In Flames",
"RAGE_someSecret": "1234567890",
"RAGE_oidcConfig__baseUrl": "http://localhost:9044",
"RAGE_jwtValidators__issuers": "http://localhost:50053,http://host.docker.internal:50053",
"RAGE_jwtValidators__jwksUrls": "http://localhost:50053/.well-known/jwks,http://host.docker.internal:50053/.well-known/jwks",
"RAGE_emailConfig__fromName": "The Perfect Corp Team",
"RAGE_emailConfig__fromEmail": "noreply@perfectcorp.com",
"RAGE_echo__disableSecureCookies": "true",
"RAGE_echo__port": "9044",
"RAGE_echoOIDCUI__port": "9045",
"RAGE_echoAccount__port": "9046",
"RAGE_emailConfig__justLogIt": "true",
"RAGE_cookieConfig__domain": "localhost",
"RAGE_cookieConfig__insecure": "true",
"RAGE_systemConfig__developerMode": "true",
"RAGE_sessionConfig__insecure": "true",
"RAGE_sessionConfig__domain": "localhost",
"RAGE_GITHUB_CLIENT_ID": "bdbe2f2235eb3a02065c",
"RAGE_webAuthNConfig__enabled": "true",
"RAGE_corsConfig__enabled": "true",
"RAGE_csrfConfig__skipApi": "true",
"RAGE_oidcUIConfig__appSettings__ApplicationEnvironment": "Production",
"___RAGE_oidcUIConfig__appSettings__BaseApiUrl": "http://localhost:9044",
"RAGE_oidcUIConfig__staticFilePath": "./static/blazor/oidc-flows/wwwroot",
"___RAGE_oidcUIConfig__uriEntryPath": "http://localhost:9045",
"___RAGE_accountAppSettings__BaseApiUrl": "http://localhost:9044",
"RAGE_accountAppSettings__ApplicationEnvironment": "Production",
"RAGE_apiAppSettings__ApplicationEnvironment": "Production",
"RAGE_apiAppSettings__PrivacyPolicyUrl": "https://github.com/fluffy-bunny/fluffycore-rage-identity",
"RAGE_apiAppSettings__CookiePolicyUrl": "https://github.com/fluffy-bunny/fluffycore-rage-identity/blob/main/LICENSE",
"RAGE_oidcUIConfig__cacheBustingConfig__filePath": "./static/blazor/oidc-login-ui/wwwroot/index_template.html",
"RAGE_oidcUIConfig__cacheBustingConfig__staticPath": "./static/blazor/oidc-login-ui/wwwroot/",
"___RAGE_oidcUIConfig__cacheBustingConfig__uriPath": "/",
},
"args": [ "serve" ]
},
{
"name": "server-ngrok",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server",
"envFile": "${workspaceFolder}/.env.ngrok",
"env": {
"ENABLE_GRPC_SERVER_REFLECTION": "true",
"LOG_LEVEL": "debug",
"RAGE_APPLICATION_NAME": "server",
"RAGE_APPLICATION_ENVIRONMENT":"Development",
"APPLICATION_ENVIRONMENT":"Development",
"RAGE_LOG_LEVEL": "debug",
"RAGE_PRETTY_LOG":"true",
"RAGE_PORT": "30051",
"GRPC_GATEWAY_ENABLED": "true",
"RAGE_REST_PORT": "30052",
"RAGE_configFiles__ragePath": "./config/rage.ngrok.json",
"RAGE_jwtValidators__issuers": "http://localhost:50053,http://host.docker.internal:50053",
"RAGE_jwtValidators__jwksUrls": "http://localhost:50053/.well-known/jwks,http://host.docker.internal:50053/.well-known/jwks",
"RAGE_emailConfig__fromName": "The Perfect Corp Team",
"RAGE_emailConfig__fromEmail": "noreply@perfectcorp.com",
"RAGE_echo__disableSecureCookies": "true",
"RAGE_echo__port": "9044",
"RAGE_emailConfig__justLogIt": "true",
"RAGE_cookieConfig__secure": "true",
"RAGE_systemConfig__developerMode": "true",
"RAGE_GITHUB_CLIENT_ID": "bdbe2f2235eb3a02065c",
},
"args": [ "serve" ]
},
{
"name": "gotp",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/gotp",
"args": [ "" ]
},
{
"name": "email",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/oidc-client",
"args": [ "email" ]
},
{
"name": "echo-qrcode",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/echo-qrcode",
"args": [ ]
}
]
}