(dir: string, fileName: string, apiKey: string)
| 27 | } |
| 28 | |
| 29 | export async function setApiKeyEnvironmentVariable(dir: string, fileName: string, apiKey: string) { |
| 30 | await setEnvironmentVariable(dir, fileName, "TRIGGER_API_KEY", apiKey, true, renderApiKey); |
| 31 | } |
| 32 | |
| 33 | export async function setApiUrlEnvironmentVariable(dir: string, fileName: string, apiUrl: string) { |
| 34 | await setEnvironmentVariable(dir, fileName, "TRIGGER_API_URL", apiUrl, true); |
no test coverage detected
searching dependent graphs…