File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ const DEFAULT_SERVICE_NAME = '@herodevs/cli';
44const DEFAULT_ACCESS_KEY = 'access-token' ;
55const DEFAULT_REFRESH_KEY = 'refresh-token' ;
66
7- export const REALM_URL = process . env . OAUTH_CONNECT_URL ?? DEFAULT_REALM_URL ;
8- export const CLIENT_ID = process . env . OAUTH_CLIENT_ID ?? DEFAULT_CLIENT_ID ;
9- export const SERVICE_NAME = process . env . HD_AUTH_SERVICE_NAME ?? DEFAULT_SERVICE_NAME ;
10- export const ACCESS_KEY = process . env . HD_AUTH_ACCESS_KEY ?? DEFAULT_ACCESS_KEY ;
11- export const REFRESH_KEY = process . env . HD_AUTH_REFRESH_KEY ?? DEFAULT_REFRESH_KEY ;
7+ export const REALM_URL = process . env . OAUTH_CONNECT_URL || DEFAULT_REALM_URL ;
8+ export const CLIENT_ID = process . env . OAUTH_CLIENT_ID || DEFAULT_CLIENT_ID ;
9+ export const SERVICE_NAME = process . env . HD_AUTH_SERVICE_NAME || DEFAULT_SERVICE_NAME ;
10+ export const ACCESS_KEY = process . env . HD_AUTH_ACCESS_KEY || DEFAULT_ACCESS_KEY ;
11+ export const REFRESH_KEY = process . env . HD_AUTH_REFRESH_KEY || DEFAULT_REFRESH_KEY ;
You can’t perform that action at this time.
0 commit comments