( remoteConfigServerUrl: string, )
| 369 | } |
| 370 | |
| 371 | export function getConfigJsPathForRemote( |
| 372 | remoteConfigServerUrl: string, |
| 373 | ): string { |
| 374 | return path.join(getPathToRemoteConfig(remoteConfigServerUrl), "config.js"); |
| 375 | } |
| 376 | |
| 377 | export function getContinueDotEnv(): { [key: string]: string } { |
| 378 | const filepath = path.join(getContinueGlobalPath(), ".env"); |
no test coverage detected